上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 63 下一页
摘要: To know the future of C#, look at The Future of C#To know the future ofprogramming, look at Microsoft Perspectives on the Future ofProgramming有一点小小的认识:从C#的版本发展来看,每个版本都增加了新特性。增加的新特性大体上是为了:C#1.0, 2.0:集中... 阅读全文
posted @ 2010-02-23 13:20 能巴 阅读(288) 评论(0) 推荐(0)
摘要: Clarify没有提供批量assign defect的功能。但是web版的clarify可以哦。步骤:1. 在clarify里建立一个query包含你想要assign的defects。2. 打开web clarify,search到这个query。3. 选择update multiply defects。现在你可以批量的更改一些general的defect信息了! 阅读全文
posted @ 2010-02-23 12:04 能巴 阅读(219) 评论(0) 推荐(0)
摘要: The pattern of properties encapsulating a single field is so common that C# 3.0 introduced auto-implemented properties. Here’s an example:public int Rating { get; set; }This Rating property enca... 阅读全文
posted @ 2010-02-23 10:22 能巴 阅读(309) 评论(0) 推荐(0)
摘要: readonly fields are similar to constant fields in that they can’t be modified after initialization. The biggest difference between the two is when they’re initialized: Constants areinitial... 阅读全文
posted @ 2010-02-23 10:11 能巴 阅读(325) 评论(0) 推荐(0)
摘要: 因为新项目将主要用到CSharp,并同时会涉及Mix programming的问题,与Native C++ and C++ CLI (common language infrastructure),今天迅速的google下,做些初步了解先。现在的理解:1. 这里说的mix programming的意思应该是:让CSharp的module,Native C++ module和C++ CLI的modu... 阅读全文
posted @ 2010-02-22 16:06 能巴 阅读(979) 评论(0) 推荐(0)
摘要: Snippet is so convenient to use in C#!I need to get the way / list of getting snippets in C# later on really!Now give a good example of using snippet to write switch:enum Months { Jan, Feb, Mar, Apr, ... 阅读全文
posted @ 2010-02-22 14:25 能巴 阅读(202) 评论(0) 推荐(0)
摘要: ARRAYS ARE REFERENCE TYPESAn array is a reference type object. Therefore, assigning one array to another just makes the variable assigned to contain an identical reference to the same object inmemory. 阅读全文
posted @ 2010-02-22 14:03 能巴 阅读(194) 评论(0) 推荐(0)
摘要: In C#, content regards with string includes:1. String typeIts features:  a. built-in reference type.  b. immutable (meaning that a string can’t be modified once created) and sealed (meaning that... 阅读全文
posted @ 2010-02-22 12:03 能巴 阅读(235) 评论(0) 推荐(0)
摘要: This problem, not being able to assign null to value types, was alleviated in C# 2.0 with the introduction of a feature called nullable types. It essentially allows you to declarenullable value types ... 阅读全文
posted @ 2010-02-22 11:34 能巴 阅读(221) 评论(0) 推荐(0)
摘要: C# Aliases and the CTSC# types are specified with keywords that alias .NET CLR types. Table 4.1 shows all the .NET types and which C# keywords alias them. 阅读全文
posted @ 2010-02-22 11:26 能巴 阅读(247) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 63 下一页