我想从我自己的代码中调用 .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});