show/hide this revision's text 2 edited title

How to do dynamic object creation and method invocation in C# .NET 3.5

show/hide this revision's text 1

How to do dynamic object creation and method invocation in C# 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?