1
string CPP_NAME_SPACE = "test"
System.Console.WriteLine("} // namespace {0}", CPP_NAME_SPACE); // FormatException
System.Console.WriteLine("} // namespace {0}"); // normal
System.Console.WriteLine("// namespace {0}", CPP_NAME_SPACE); // normal
爲什麼第一行引發FormatException但不是第二行?C#控制檯WriteLine System.FormatException:
好吧,雙'''是好的,謝謝! –