11 2013 档案
摘要:那啥,是从这里整理出来的,感谢Rising_Sun,整理的过于简单,看不明白的戳这里using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.W
阅读全文
摘要:Http://www.msdn.com (是学习微软技术的首选,有大量的类库帮助文档,同时也有一些高手发表的技术文章,很精练,值得各阶段的人士学习)http://technet.microsoft.com(要是微软的,主要介绍服务器的技术,像exchange,SQL server,Windows server等,同时里面也有非常不错webcasts,很生动的实际动手教程,比看文字容易多了)http://www.asp.net (主要介绍asp.net的相关技术,包括ajax,mvc,有基础的入门模板,里面的Wiki也有很多小的技巧以及链接的博客上发表的文章。)http://www.ibm.co
阅读全文
摘要:C#using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media.Animation;using System.Windows.Media.Imaging;using Sys
阅读全文
摘要://引用类型(使用了class)class SomeRef{public Int32 x;}//值类型(使用了struct)struct SomeVal{public Int32 x;}static void ValueTypeDemo(){ //引用类型在堆上分配空间,值类型在栈上分配,都用new初始化为0 SomeRef r1 = new SomeRef(); SomeRef v1 = new SomeVal(); //引用类型提领指针,值类型直接修改内容 r1.x = 5; v1.y = 5; //都显示5 Console.WriteLin...
阅读全文

浙公网安备 33010602011771号