Lets say i have an extension method.
public static string DoSomething(this IInterfaceA @this) ...
and
public static string DoSomething(this IInterfaceB @this) ...
but if I have a class that implements both interfaces, is it possible, for an extension library, to indicate which one it should prefer?