У меня возникла проблема с добавлением элементов в список
У меня возникла проблема с добавлением данных к следующему
Что я уже пробовал:
I have a class class Zips { public List<string> FileName { get;set;} public List<string> Zip { get; set; } public List<int> ZipCount { get; set; } } and then in main code I have List<Zips> Info = new List<Zips>(); Now I need to know how to add something to the list; Info.Filename = filename; doesn't work... So what am I doing wrong;