str = @"abc ""def"" ghi """"jkl"""" mn";

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

 

转载于:https://www.cnblogs.com/sky20080101/p/6817857.html

你可能感兴趣的:(str = @"abc ""def"" ghi """"jkl"""" mn";)