
.net General
unixboy_xujf
这个作者很懒,什么都没留下…
展开
-
C#3.0初体验
1.隐型局部变量 C# 3.0引入了一个叫做“var”的新关键字。这个关键字允许开发者建立一个变量,但不必明确它的类型。例如,用var说明一个字符串,就像这样: var myData = "This is my data"; 注意,这里并没有提到myData变量是一个字符串,而C# 2.0却要求这一点。 虽然var允许您建立隐含的类型,它并没有降低C#浓厚的...2008-03-11 11:15:02 · 89 阅读 · 0 评论 -
Applying Visual Styles to the TabControl in .NET 2
Download source - 14.8 Kb Introduction I had faced a big problem with the TabControl included in Visual Studio 2005. So I applied a "Mnemonic" (hot key) feature to the TabControl, and for this reaso...2008-03-24 22:13:57 · 112 阅读 · 0 评论