C#新手在这里。我正在尝试如下设置C#变量。

string profileArg = @"/profile ""eScore"" ";

最终结果是我希望变量包含值
/profile "eScore"

“eScore”后面的字符串中应该有一个空格

我该怎么做?

赛斯

最佳答案

字符串中eScore后面有一个空格。

// a space after "eScore"
string profileArg = @"/profile ""eScore"" ";

// no space after "eScore"
string profileArg = @"/profile ""eScore""";

// space in "eScore "
string profileArg = @"/profile ""eScore """;

// No space using escaping
string profileArg = "/profile \"eScore\"";

09-13 04:32