String.Concat中的双引号

时间:2017-01-23 05:05:47

标签: c#

我想写

  

标签“BuildingData”不存在。

我知道如何使用String.format和stringbuilder编写。我想用String.Concat编写它。

当我编写代码时

String.Concat("Label ","\"","BuildingData","\"", "does not exist.")

输出

  

Label \“BuildingData \”不存在。

1 个答案:

答案 0 :(得分:3)

does之前添加空格,您将获得正确的输出。引号是红色的鲱鱼 - 您正在查看调试器。

using System;

public class Test
{
    public static void Main()
    {
        var concat = String.Concat("Label ","\"","BuildingData","\"", " does not exist.");

        Console.WriteLine(concat);
    }
}

Here's the output