B
brunie
Hello,
I have following :
string ClassName = "Client";
string Command = ClassName + ".GetType()";
Now I have a statement in a string.
How can I excecute the statement that is in that string?
Is something like this possible in C# and how?
Type t = Excecute(Command);
Thanks
I have following :
string ClassName = "Client";
string Command = ClassName + ".GetType()";
Now I have a statement in a string.
How can I excecute the statement that is in that string?
Is something like this possible in C# and how?
Type t = Excecute(Command);
Thanks