I want to have an array of objects. For example, the class may be Person, and the properties might be LastName, FirstName, and PhoneNumber.
Rather than making an array of objects, can I just have .NET allocate only what I need, kind of how an ArrayList works? Thanks
