namespace ConsoleQuotes
{
class Program
{
static void Main(string[] args)
{
string str = @"abc ""def"" ghi """"jkl"""" mn";
Console.WriteLine(str);
//abc "def" ghi ""jkl"" mn
}
}
}
05-19 08:38