How can i add an item to a member of List<>
array?
please see the example below :
List<string>[] array_of_lists = new List<string>[10];
array_of_lists[1].Add("some text here");
but a have the error below :
Object reference not set to an instance of an object.
what this error mean and how can i fix it?
>`
– Sam Leach Oct 11 '13 at 11:12