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-12-09 14:30:19
namespace ConsoleQuotes { class Program { static void Main(string[] args) { string str = @"abc ""def"" ghi """"jkl"""" mn"; Console.WriteLine(str); //abc "def" ghi ""jkl"" mn } } }