Reflection error Object type T does not match target type System.RuntimeType.
I'm trying to get the "Execute" method from in this case
DefaultCommand
.
Can someone please help me I'm sure i made some stupid mistake :/
For Context the command.CommandReference
can't be null it's checked before this Method is called.
The CommandReference
is the Class i'm trying to call a method from.
10 Replies
i assume
command.CommandReference
returns Type
?
you need an instance of that type to pass to methodInfo.Invoke
.
say command.CommandReference
returns typeof(Foo)
. we then get an instance method declared in Foo
named Execute
. to then Invoke
that instance method, we need to specify what instance of Foo
to invoke the method on.
but since you're passing command.CommandReference
to Invoke
(which is an instance of Type
, not an instance of Foo
), it fails.Yes
command.CommandReference
returns a Type
oh so i can't just use the command.CommandReference
in the Invoke
Method.
Thank you :) I got it working
I added this line and used now classInstance
to Invoke my Method ^^
is there a reason why you can't make this generic?
My Commands could be in an different Assembly than i executing in if i'm understanding this correct i can't make it generic then?!
Please Correct me if I'm wrong im still Learning.
you can simply constrain the generic parameter to some common base type or interface?
>.< well i have no plan how that works but i will look into it thank you.
you can, generics are available at runtime
Idk if that Explains what I'm trying to do but in my lib i want to have all the code required to execute the command parse args and selecting the right command to execute.
And in a new Tool "Console app" i only need my lib and the actualy command Logic. + one line to register the command.
I'm sorry if that makes no sense that's my first more complex project i'm trying to do.
For this you say i Don't need Reflection and just can use generics?

Some code would be good to look at
Um I looked around and yeah I found a Library that already exists and is exactly what I need ^^.
"Cocona" is it called.
But thank you for your answers.