Hello,
C# newbie here. I am trying to set a C# variable as follows.
string profileArg = @"/profile ""eScore"" ";
The end result is that I want the variable to contain the value
/profile "eScore"
There should be a space in the string after the "eScore"
How do I do it?
Seth