我正在通过反射创建一个程序集。当我尝试运行我的应用程序时,我得到一个MissingMethodExeption:
// public static bool berekenQueens(int Row, int N, bool[,] bord)
objType.InvokeMember("berekenQueens",
BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.Static,
null, instance, null);
// private static bool bordValidatie(int currentRow, int currentCol, bool[,] currentBord, int N)
objType.InvokeMember("bordValidatie",
BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.Static,
null, instance, null);
我的代码(当在menuItem上单击时,我想创建一个程序集并加载类)
private void MenuItem_Click(object sender, RoutedEventArgs e)
{
// Create an assembly object to load our classes
string path = System.Environment.CurrentDirectory + "\\NQueens.dll";
Assembly ass = Assembly.LoadFile(path);
Console.WriteLine(path);
Type objType = ass.GetType("NQueens.NQueen");
// Create an instace of NQueens.NQueen
var instance = Activator.CreateInstance(objType);
// public static bool berekenQueens(int Row, int N, bool[,] bord)
objType.InvokeMember("berekenQueens",
BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.Static,
null, instance, null);
// private static bool bordValidatie(int currentRow, int currentCol, bool[,] currentBord, int N)
objType.InvokeMember("bordValidatie",
BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.Static,
null, instance, null);
}
我想加载的方法来自我的项目NQueens。
public class NQueen
{
public static bool berekenQueens(int Row, int N, bool[,] bord)
{
if (Row >= N) return true;
for (int Col = 0; Col < N; Col++)
{
//Q toevoegen
bord[Row, Col] = true;
//Q + Q volgende Row controleren
if (bordValidatie(Row, Col, bord, N) && berekenQueens(Row + 1, N, bord))
{
return true;
}
//Q verwijderen indien niet door controle
bord[Row, Col] = false;
}
return false;
}
private static bool bordValidatie(int currentRow, int currentCol, bool[,] currentBord, int N)
{
int colstep = 1;
for (int i = currentRow - 1; i >= 0; i--)
{
//rechte lijn
if (currentBord[i, currentCol])
return false;
//linker diagonaal
if (currentCol - colstep >= 0)
{
if (currentBord[i, currentCol - colstep])
return false;
}
//rechter diagonaal
if (currentCol + colstep < N)
{
if (currentBord[i, currentCol + colstep])
return false;
}
colstep += 1;
}
return true;
}
}
任何人都可以帮我吗?
答案 0 :(得分:3)
绑定器也使用参数来查找合适的方法。你没有方法void berekenQueens()因此调用InvokeMember为null,因为最后一个参数(arguments数组)不会给出匹配的方法。你真的不需要实例(因为这个方法是静态的),所以如果你愿意,你可以将它留空。
Type objType = ass.GetType("NQueens.NQueen");
// Create an instace of NQueens.NQueen
var instance = Activator.CreateInstance(objType);
var result = objType.InvokeMember("berekenQueens",
BindingFlags.InvokeMethod |
BindingFlags.Static |
BindingFlags.Public,
null,
instance,
new object[] { 1, /* Row */
1, /* N */
new bool[,] { {true,false} } /* bord */
});
答案 1 :(得分:1)
使用BindingFlags.NonPublic
代替方法BindingFlags.Instance
bordValidatie
,因为它是私有方法。