是否可以在C#中调用方法(非静态)而不实例化其类,例如:
public class MyClass
{
public void MyMethod()
{
Console.WriteLine("method called");
}
}
我已经使用System.Reflection.Emit命名空间尝试了这个方法,我将MyMethod()的IL复制到动态方法但得到了异常:
检测到FatalExecutionEngineError: 运行时遇到了致命错误。错误的地址是0x5dceccf5,在线程0x2650上。错误代码是0xc0000005。此错误可能是CLR中的错误,也可能是用户代码的不安全或不可验证部分中的错误。此错误的常见来源包括COM-interop或PInvoke的用户封送错误,这可能会破坏堆栈。
Assembly a = System.Reflection.Assembly.GetExecutingAssembly();
Type t = a.GetType("Tutorial.MyClass");
MethodInfo m = t.GetMethod("MyMethod");
MethodBody mb = m.GetMethodBody();
DynamicMethod dm = new DynamicMethod("MethodAlias", null, Type.EmptyTypes, typeof(Tutorial.MainWindow), true);
DynamicILInfo ilInfo = dm.GetDynamicILInfo();
SignatureHelper sig = SignatureHelper.GetLocalVarSigHelper();
ilInfo.SetLocalSignature(sig.GetSignature());
ilInfo.SetCode(mb.GetILAsByteArray(), mb.MaxStackSize);
try
{
dm.Invoke(this, null);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
谢谢
答案 0 :(得分:3)
不是我知道的。因为它不是静态的。
我只想说“不”,但我的回复时间不够长。