Basically I\'m trying to make a string to function dictionary in c#, I\'ve seen it done like this:
Dictionary>
<
Considering your use case of text based rpg with commands with a set of arguements, perhaps you should make all of your commands methods that all have a signature of
MethodName(string[] args)
With the Dictionary of
new Dictionary>>
That would make it easier to work with your dictionary and actually call the methods.