This is probably a pretty obvious question, but how would I go about creating a List that has multiple parameters without creating a class.
List
Example:
This works fine with me
List myList = new List(); myList.Add(string.Format("{0}|{1}","hello","1") ; label:myList[0].split('|')[0] val: myList[0].split('|')[1]