I have two enums:
enum myEnum { item_one = 1, item_two = 2, } enum myEnum2 { item_four = 4, item_five = 5, } I would like to represent these as Json objects so that I can send then off when a http request is made. the goal is to have them look like:
{ myEnum:{[ { "code": 1, "definition": "item_one" }, { "code": 2, "definition": "item_two" } ]}, myEnum2:{[ { "code": 4, "definition": "item_four" }, { "code": 5, "definition": "item_five" } ]}, }
Enum.GetValuesand the names withEnum.GetNamesorEnum.GetName