我想从我自己的代码中调用.NET可执行文件的功能。 我用反射镜,看到这一点:
namespace TheExe.Core
{
internal static class AssemblyInfo
internal static class StringExtensionMethods
}
在命名空间TheExe.Core是我感兴趣的函数:
internal static class StringExtensionMethods
{
// Methods
public static string Hash(this string original, string password);
// More methods...
}
使用此代码我可以看到散列法,但我怎么称呼呢?
Assembly ass = Assembly.LoadFile("TheExe");
Type asmType = ass.GetType("TheExe.Core.StringExtensionMethods");
MethodInfo mi = asmType.GetMethod("Hash", BindingFlags.Public | BindingFlags.Static);
string[] parameters = { "blabla", "MyPassword" };
// This line gives System.Reflection.TargetParameterCountException
// and how to cast the result to string ?
mi.Invoke(null, new Object[] {parameters});