分类目录

链接

2012 年 5 月
 123456
78910111213
14151617181920
21222324252627
28293031  

近期文章

热门标签

新人福利,免费薅羊毛

我瞬间无耻的明白了

昨晚去吃饭,身后坐了对情侣,吃到一半的时候他们就吵了起来,听男生说他嫌那个女生黑,我回头看了一眼,那个女生肤色挺白的,我瞬间无耻的明白了……

Others 暂无评论 阅读(2,038)

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,224)