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?