首页 > Windows开发 > 详细

c#中的转义字符'@' '\' '\\'

时间:2017-05-24 00:15:46      阅读:453      评论:0      收藏:0      [点我收藏+]

技术分享

转义字符‘\‘  指的是‘\‘加字符有特殊作用如‘\r‘ ‘\n‘ ‘\t‘ ‘\b‘等

但是有时候字符串不需要转义或原样输出

如 strings="C:\System\1.txt"

可以写成  strings=@"C:\System\1.txt"

 

 static void Main(string[] args)
        {
            string s =  "C:\woo\1.txt";  这样写是会报错
            Console.WriteLine(s);
            Console.ReadKey();
        }

 

正确写法  两种写法都行

  static void Main(string[] args)
        {
            string s = @"C:\woo\1.txt";
            string s1 ="C:\\woo\\1.txt";
            Console.WriteLine(s);
            Console.ReadKey();
        }

当然这种写法也行 但是不推荐 容易混

  string s ="C:/woo/1.txt";

 

c#中的转义字符'@' '\' '\\'

原文:http://www.cnblogs.com/lt123/p/6896738.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!