I have a class:
public class Person
{
public string PersonID { get; set; }
public string RegistrationNo { get; set; }
public DateTime RegistrationDate { get; set; }
}
and i used a List object that will hold number of Person's record mapped from the database in my program. Database has millions of record and I am planning to take all this records at a time and put those record into the List. So my question is the List object capable of holding millions of data at a time or is there any limitation on it?
More specifically what is the limit of List object about holding number of record?