I have two List which I am accessing by index (e.g. Name[10], Date[10]). They\'re closely tied, so Name[10] is related to Date[1
List NameDateList {get; set; }
Is an easy way to accomplish what you want, but for clarity you are probably better off making a custom type to house them such as:
public class NameDate
{
public string Name { get; set; }
public DateTime Date{ get; set; }
}
Then you could use:
List NameDateList {get; set; }