不要在字符串中硬编码 \n \r等, string s = "Hi\r\nthere";不太好 而应该用 string s = "Hi" + Environment.NewLine + "there";
string是不可变的,相关的操作返回的都是一个新的string。如果要在运行时将几个字符串连接到一起,请避免使用+操作符,因为它会在垃圾收集堆上创建多个字符串对象,相反,应当使用System.Text.StringBuilder类型。
以下写法完全等价 string file = "C:\\Windows\\System32\\NotePad.exe"; string file = @"C:\Windows\System32\NotePad.exe";
Powered by: BlogJava Copyright © kainster