Interceptors in C# 12 - What You Need To Know
Interceptors were shipped as a preview/experimental feature as part of C#12. The purpose of the interceptor is to allow you to intercept/replace existing method calls within your application with a substitute method of your choosing.
When first hear...