Posted on: 1/21/2014 10:25:30 PM | Views : 646

How do I add mutiple columns to my List Object below? Your help is greatly appraicated.
Code:
 List<object> tskobjslist = ASPxGVNameList.GetSelectedFieldValues(new string[] { "NUMBER_BCA" });  List<string> itemList = new List<string>();
 Currently my list only has NUMBER_BCA and I would like to add UserID, UserType, CreatedDate to the item list, how do I add this items the list?
try    {    string selecteditems = string.Empty;    foreach (object obj in tskobjslist)    {        itemList.Add(obj.ToString());   <--- Need to add on more variable data    }       selecteditems = String.Join(",", itemList.ToArray());  <--- Need mu ...

Go to the complete details ...