You are trying to convert a list of integer to a string
string qty = new List<int>();
maybe doing
List<int> qty = new List<int>();
solved Cannot implicitly convert type ‘System.Collections.Generic.List
You are trying to convert a list of integer to a string
string qty = new List<int>();
maybe doing
List<int> qty = new List<int>();
solved Cannot implicitly convert type ‘System.Collections.Generic.List