2012年7月19日

C#基础之out,ref关键字

摘要: C# out,ref关键字 阅读全文

posted @ 2012-07-19 15:42 YuanSong 阅读(199) 评论(0) 推荐(0) 编辑

C#基础之is,as关键字

摘要: C#is,as关键字 阅读全文

posted @ 2012-07-19 15:17 YuanSong 阅读(379) 评论(0) 推荐(0) 编辑

C#基础之菜鸟问题

摘要: 1.string a = null 与 string a = " "的区别。string a = null 表示a没有志向任何字符,为空引用,不占内存空间。string a = " "表示a指向一个空字符,不是一个空引用,要为其分配内存空间。2.逻辑与条件的区别在C#中有&(逻辑与),|(逻辑或),&&(条件与),||(条件或)区别为:a&&b对应于a&b,不同的是,对于a&&b,如果a为false,则不计算b。对于a&b,则将分别计算a,b的值。3.const 与readonlyc 阅读全文

posted @ 2012-07-19 15:01 YuanSong 阅读(255) 评论(0) 推荐(0) 编辑

WinCE 6.0系统制定(添加Web Server组件、SQL Server CE组件和SD WiFi驱动)

摘要: 1.添加Web组件在Catalog Items View中添加 CoreOS -> CEBASE -> Communication Services and NetWorking -> Servers -> Web Server,同时添加ASP和ISAPI。2.添加SQL Server 组件在Catalog Items View中添加CoreOS -> CEBASE -> Applications and Services Development -> SQL Compact。同时添加CoreOS-> CEBASE -> Applicati 阅读全文

posted @ 2012-07-19 14:30 YuanSong 阅读(1918) 评论(0) 推荐(0) 编辑

导航