I have an existing application which is already developed and is in use.
There are multiple overloads of one of the methods (called Read()) of a class. Now I want t
Have a generic method
public void Read(T t) where t:ISomeCommonInterface { Before(); Read(t); After(); }