Creating a collection classI came across this great article within the MSDN documentation that explains how to create your own collection class in .NET. It explains how to implement the Add() and Remove() methods along with the Item property to allow you to access a particular object in your collection via its index value. While they show the index as being an integer in this article, I am assuming that you can also use a string as an index.
¶ 5:53 PM