C#.NET 2.0 Generics Class collection
C#.NET 2.0 provide great features with generics collection. Now you don’t have to write code for the coding for adding,removing objects. It all contains by the generics colleciton. here the sample user level class using System; using System.Collections.Generic; public class UserLevelCollection :System.Collections.Generic.List {#region Private Membersprivate int _intUserLevelID;private Guid _guidUserLevelGUID;private string _strDescription;private int _intCreatedBy;private DateTime _dtCreatedDate;private