Regardless of whether or not this is a good idea, is it possible to implement an interface where the executing function is aware of the calling object\'s type?
c
Well you could try grabbing the stack trace and determine the type of the caller from there, which is an overkill in my opinion and would be slow.
How about an interface, that A,B would implement?
interface IFoo {
int Value { get; }
}
And then your DoSomething method would look like this:
public int DoSomething(int input, IFoo foo)
{
return input + foo.Value;
}