class CItemList { public string Name; public long Value; public CNameList(string name, long value) { Name = name; Value = value; } public override string ToString() { Generates the text shown in the combo box return Name; } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)