In my class I have private variables and properties like this.
private string _itemCOde=string.Empty; private string _itemName=string.Empty; public string
You could use an ExpandoObject:
Represents an object whose members can be dynamically added and removed at run time.
dynamic expando = new ExpandoObject(); expando.Cost= 42.0; expando.ItemName = "Shoes";