[Solved] How do I transfer a list from between two Forms? [closed]
[ad_1] The type you’re passing is: List<macivari> The type the constructor expects is: List<string> These are not the same type. If Form2 needs a List<macivari>, then it should expect one: public List<macivari> Freezers=new List<macivari>(); public Form2(List<macivari> a) { InitializeComponent(); Freezers = a; foreach (var item2 in Freezers) { } } If, on the other hand, … Read more