What is a Collection?
18 Oct 2006Mads Torgersen, a Microsoft product manager, posts an interesting blog article about collections and initializers in the upcoming release of C# 3.0. For instance, in C# 3.0 you can create and initialize a collection as follows:
new myNames { "Mike", "Frank", "Sue");
Just how this works and some of the discoveries Microsoft made about their own code makes for a good read (article).