Hey,
I ran into the following problem. I created a hash map, and i am populating it with delegates.
Code:
Commands.Add("ANS", new CommandDelegate(ANS));
Now, this goes fine, but when i attempt to call the function i get an error.;
Code:
Commands[ServCom.CommandName](ServCom);
The error is:
Code:
Error	1	Method name expected
Any ideas on why this fails?

Thx in advance.