I have a class as such:
class Item
{
public string eventName{ get; set; }
public string performanceTime { get; set; }
}
and I have two lists of data:
List<string> progName = getProgrammingNames();
List<string> progTimes = getProgrammingTimes()
Inside both string lists are data and I would like to merge them to
List<Item> itemList = new List<Item>();
How can I do it?