So I'm relatively new to c#, and I've looked around but couldn't find anything close to what I'm looking for.
I want to call a method(s) with a string, but not a specific one.
For instance, assume we have two methods: one named Cat and one named Dog.
Suppose I have   string Input = "Dog"; How can I do something like  Method.Input(); to call the method with the name corresponding to information... if that makes sense.
