I've got many suggestions to your code, but the answer of your question is:
class Fields
{
public string key { get; set; }
public string value { get; set; }
public override string ToString()
{
return value;
}
}
"but i want in my combobox.Items as value of key" Didn't understand if you wanted key or value to be displayed. I choosed value. ;)