18
05/12
18
05/12
C#编程建议1:正确操作字符串
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Tip1 { class Program { static void Main(string[] args) { } private static void NewMethod1() { string s1 = "abc"; s1 = "123" + s1 + "456"; //以上两行代码创建了3个 //字符串对象,并执行了一次string.Contact方法 } private static void NewMethod6() { string re6 = 9 + "456"; //该代码发生一次装箱,并调 //用一次string.Contact方法 } private static void NewMethod2() { string...