Tagged Questions
2
votes
4answers
4k views
How to do dynamic object creation and method invocation in .NET 3.5
How does the code looks that would create an object of class:
string myClass = "MyClass";
Of the above type, and then call
string myMethod = "MyMethod";
On that object?
1
vote
1answer
53 views
Is registering / unregistering to a .NET event a constant time operation?
Initially, I had assumed yes, because I understood that the invocation list for a multi-cast delegate is implemented as a linked list, which supports constant time insertion and deletion. However, ...