namespace ConsoleQuotes { class Program { static void Main(string[] args) { string str = @"abc ""def"" ghi """"jkl"""" mn"; Console.WriteLine(str); //abc "def" ghi ""jkl"" mn } } }
时间: 2024-10-10 10:29:13
namespace ConsoleQuotes { class Program { static void Main(string[] args) { string str = @"abc ""def"" ghi """"jkl"""" mn"; Console.WriteLine(str); //abc "def" ghi ""jkl"" mn } } }