This question already has answers here:
How to add double quotes to a string that is inside a variable?
(19个回答)
6年前关闭。
我想代表以下字符串:
我当时想使用
我需要用双引号将第三个参数
(19个回答)
6年前关闭。
我想代表以下字符串:
aaaa,23,"something inside double quotes", 99, 8, 7
我当时想使用
String.Format
来做到这一点:StringBuilder.AppendLine(string.Format("{0},{1},{2},{3},{4},{5}",
item.one, item.two, item.three, item.four, item.five, item.six));
我需要用双引号将第三个参数
{2}
包裹起来。 最佳答案
string.Format("{0}, {1}, \"{2}\", {3}, {4}, {5}", ...);
关于c# - String.Format在字符串中存储双引号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15610091/
10-17 01:45