How could I go about calling a method on a static class given the class name and the method name, please?
For example:
Given System.Environment
Here is a basic outline of what you would do:
Edit: This will work if you do not know the namespace of the static class. Otherwise use Daniel Brückner's solution as its much simpler.