有没有办法通过System.Reflection,System.Diagnostics或其他获得一个引用静态方法调用静态方法的实例,而不传递给方法本身?
例如,这些方面的东西
class A { public void DoSomething() { StaticClass.ExecuteMethod(); } } class B { public void DoSomething() { SomeOtherClass.ExecuteMethod(); } } public class SomeOtherClass { public static void ExecuteMethod() { // Returns an instance of A if called from class A // or an instance of B if called from class B. object caller = getCallingInstance(); } }
我可以使用System.Diagnostics.StackTrace.GetFrames获得类型,但是有没有办法获得对实际实例的引用?
我意识到反思和表现的问题,以及静态调用的静态问题,而且这通常甚至几乎是全面的,而不是正确的方法.这个问题的一部分原因是我很好奇,如果它是可行的;我们正在传递实例.
ExecuteMethod(instance)
而且我只是想知道这是否可能,仍然可以访问该实例.
ExecuteMethod()
@Steve Cooper:
我没有考虑扩展方法.有些变化可能会起作用.