2008年9月29日
摘要: 1、SQL Server 2005 Enterprise Edition(32 位和 64 位) Enterprise Edition 是最全面的 SQL Server 版本,是超大型企业的理想选择,能够满足最复杂的要求。 注:没有任何限制,包含所有功能和特性。 2、SQL Server 2005 Standard Edition(32 位和 64 位) SQL Server 2005 Sta... 阅读全文
posted @ 2008-09-29 14:17 阿良 阅读(1085) 评论(0) 推荐(0) 编辑
摘要: using System; class Test { int x; static y; void F(){ x=1; //正确, 等价于this.x=1 y=1; //正确, 等价于Test.y=1 } static void G(){ x=1; //错误, 不能访问this.x y=1; //正确, 等价于Test.y=1 } static void ... 阅读全文
posted @ 2008-09-29 11:28 阿良 阅读(304) 评论(0) 推荐(0) 编辑
摘要: class Class2 { delegate String GetString(string FirstName, string LastName);//定义一个委托 static string FullName(string FirstName, string LastName)//定义一个方法,注意参数要和委托的保持一致 { ... 阅读全文
posted @ 2008-09-29 11:13 阿良 阅读(208) 评论(0) 推荐(0) 编辑