分类

链接

2025 年 4 月
 123456
78910111213
14151617181920
21222324252627
282930  

近期文章

热门标签

新人福利,免费薅羊毛

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

.NET 暂无评论 阅读(2,272)