文字列を入力してコマンドを実行しようとしています。私は次のクラスを持っています:
abstract class ECommand {
public static bool TryExecute(string raw, out object result) {
string name = raw; //function trigger
if (!Config.CommandRegister.ContainsKey(name)) {
result = null;
return false;
}
Type datType = Config.CommandRegister[name];
var instance = Activator.CreateInstance(datType);
MethodInfo method = datType.GetMethod("Execute");
result = method.Invoke(instance, null);
return true;
}
public extern object Execute();
}
文字列と同等の型は、次のように Dictionary に登録されます。
public static Dictionary<string, Type> CommandRegister =
new Dictionary<string, Type> { {"test", typeof(TestECommand)} };
私はこのクラスでそれをテストしようとします:
class TestECommand : ECommand {
public new object Execute() {
Console.WriteLine("test");
return "k";
}
}
呼び出すとき
ECommand.TryExecute(source, out res);
次の例外が発生します。
System.TypeLoadException was unhandled
HResult=-2146233054
Message=Could not load type 'Test.ECommand' from assembly 'Test, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' because the method 'Execute' has no implementation (no RVA).
Source=Test
TypeName=Test.ECommand
私は何を間違っていますか?