[Solved] Cannot implicitly convert type ‘System.Collections.Generic.List’ to ‘string’

[ad_1]

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>(); 

[ad_2]

solved Cannot implicitly convert type ‘System.Collections.Generic.List‘ to ‘string’