I\'m trying to make a manual setter/getter method in C#, but i\'m getting the following error from the \"set\"-line: Error: The best overloaded method match for \'System.Col
If you really want to add value, which is a List, to packages you should use
value
List
packages
set { packages.AddRange(value); }
Otherwise,
set { packages = value; }