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
        }
    }
}

 

posted @ 2017-05-06 19:41  sky20080101  阅读(299)  评论(0编辑  收藏  举报