Tagged Questions
4
votes
1answer
222 views
Options for invoking methods dynamically in C#
I've seen quite a few questions related to how do I invoke a method like this and that. What I haven't found is a listing of the different options of how to invoke a method via reflection or any other ...
3
votes
2answers
219 views
How do I find out if a particular delegate has already been assigned to an event?
I have a command button on a winform. So, if I have something like:
myButton.Click += MyHandler1;
myButton.Click += MyHandler2;
myButton.Click += MyHandler3;
How can I tell if any particular ...
-1
votes
4answers
110 views
Problem with Method.invoke
I have a method that return a list of objects and I want to call it by the invoke method of the class Method. The only problem is that invoke method returns an Object and not a list<Object>.
...