posts - 86,  comments - 244,  trackbacks - 24
06 2006 档案
Internet Explorer 7 Beta 3 放出!
摘要: what's new in Beta 3Internet Explorer 7 Beta 3 现在可以下载, 包含了可靠性,兼容性,用户功能及安全性方面的多项改进.尽管 Beta 2 已经完全成形, 基于用户反馈, 我们对浏览器的外观和使用感觉方面做了一些附加的变动. Beta 3 允许用户添加 e-mail 按钮到工具栏, 允许用户左右拖拽标签来确定它们的顺序, 放大时支持水平滚动. 为了增强R...阅读全文
posted @ 2006-06-30 02:16 NGNGrid 阅读(278) | 评论 (4) 编辑
Pre-Release Build Available for Windows Server 2003 Service Pack 2!
摘要: Hello from Windows Serviceability!We're pleased to announce a Pre-Beta release (build 2721) of the next service pack for Windows Server 2003 (SP2). SP2 will be a conventional service pack consisting o...阅读全文
posted @ 2006-06-20 07:00 NGNGrid 阅读(385) | 评论 (0) 编辑
Coming Soon! Windows Server 2003 Service Pack 2 Beta!
摘要: -June 15, 2006Coming soon! Windows Serviceability will be releasing Windows Server 2003 Service Pack 2 Beta! We appreciate your future help in making Windows Service Pack 2 one of our best service pac...阅读全文
posted @ 2006-06-17 18:45 NGNGrid 阅读(515) | 评论 (2) 编辑
WinFX开发手记 Part1 WinFX概述
摘要: WinFX开发手记(本文都是基于WinFX Beta2做出的)Part1 WinFX概述作者:张程WinFX是一种在Microsoft Windows下的托管编程模型。它包含了.NET Framework 2.0、Windows Presentation Foundation、Windows Communication Foundation、Windows WorkFlow Foundation。...阅读全文
posted @ 2006-06-12 12:54 NGNGrid 阅读(954) | 评论 (3) 编辑
C# 4.0语言将出现重大改变?!带来一段Code Preview
摘要: (只是表述消息,不保证真实性)虽然现在C# 2.0还没有普及虽然现在C# 3.0还抱着琵琶 : )但是C# 4.0已经在研制中了~~在微软的研究院里,C# 4.0的雏形已经出现了,并且与之前的C#语言有着很大的不同可以这样说,之前的C#语言还算是C家族的成员,那么,C# 4.0将推翻人们的这种看法!废话少说,看代码:下面是一段典型的现在的C#代码:1publicvoidMain(string[]a...阅读全文
posted @ 2006-06-10 23:13 NGNGrid 阅读(5436) | 评论 (63) 编辑
C# 3.0 新特性初步研究
摘要: C# 3.0新特性初步研究 Part1:使用隐含类型的本地变量C# 3.0新特性初步研究 Part2:使用扩展方法C# 3.0新特性初步研究 Part3:使用拉姆达表达式C# 3.0新特性初步研究 Part4:使用集合类型初始化器C# 3.0新特性初步研究 Part5:匿名类型C# 3.0新特性初步研究 Part6:使用查询表达式点击相应链接进入对应随笔哈阅读全文
posted @ 2006-06-10 22:26 NGNGrid 阅读(1469) | 评论 (1) 编辑
C# 3.0新特性初步研究 Part6:使用查询表达式
摘要: 查询表达式(Query Expression)大家都应该对SQL语句不陌生吧,在C# 2.0之前,嵌入到代码中的SQL就是下面这个样子:1publicvoidTest()2{3SqlConnectionc=newSqlConnection(…);4c.Open();5SqlCommandcmd=newSqlCommand(6@“SELECTc.Name,c.Phone//q...阅读全文
posted @ 2006-06-10 20:47 NGNGrid 阅读(737) | 评论 (4) 编辑
C# 3.0新特性初步研究 Part5:匿名类型
摘要: 匿名类型(Anonymouse Type)——这年头什么多系都匿名了 : )在初始化的时候根据初始化列表自动产生类型的一种机制。典型的代码:1classProgram2{3staticvoidMain(string[]args)4{5varx=new{a=3,b=5,c="sometext"};6Console.WriteLine(x.a.ToString());7}8}很奇怪吧~~~不要认为这个...阅读全文
posted @ 2006-06-10 20:35 NGNGrid 阅读(639) | 评论 (5) 编辑
C# 3.0新特性初步研究 Part4:使用集合类型初始化器
摘要: 集合类型初始化器(Collection Initializers)想看一段“奇怪”的代码:1classProgram2{3staticvoidMain(string[]args)4{5vara=newPoint{x=10,y=13};6varb=newPoint{x=33,y=66};78varr1=newRectangle{p1=a,p2=b};9Console.Writ...阅读全文
posted @ 2006-06-10 20:24 NGNGrid 阅读(614) | 评论 (1) 编辑
C# 3.0新特性初步研究 Part3:使用拉姆达表达式
摘要: 拉姆达表达式(Lambda Expression)可以算是一种匿名方法的实现吧。在C# 2.0中引入了匿名方法的概念,我们可以写下如下代码:1classProgram2{3staticvoidTestLambdaExpression()4{5List<int>list=newList<int>();67list.Add(1);8list.Add(2);9list.Add(3...阅读全文
posted @ 2006-06-10 19:43 NGNGrid 阅读(929) | 评论 (3) 编辑
考驾照!!
posted @ 2006-06-08 17:12 NGNGrid 阅读(53) | 评论 (0) 编辑