C # how to find out if a remote object implements an interface
Is there a way to find out if the remote object implements the interface (I cannot change / add methods to the remote object).
Indeed, I cannot use IsAssignableFrom or "as" for testing as it is a remote object. Then I have an exception when I try to call unimplemented methods.
thanks
+2
a source to share