回到我从.dll文件的路径开始编写非托管代码时,我将使用LoadLibrary()将.dll放入内存,然后使用get GetProcAddress()获取指向我希望调用的函数的指针.如何在C#/ .NET中实现相同的结果.
Type t = Type.GetType(className); // get the method MethodInfo method = t.GetMethod("MyStaticMethod",BindingFlags.Public|BindingFlags.Static); Then you call the method: method.Invoke(null,null); // assuming it doesn't take parameters