using System.Collections.Generic;
public static void Main()
var dict = GetAllEnums(Assembly.GetExecutingAssembly());
var json = JsonConvert.SerializeObject(data, Formatting.Indented);
public static Dictionary<string, Dictionary<string, int>> GetAllEnums(Assembly assembly)
.ToDictionary(t => t.Name, t =>
.Zip(Enum.GetValues(t).Cast<int>(), (Key, Value) => new { Key, Value })
.ToDictionary(kvp => kvp.Key, kvp => kvp.Value));
enum VagueLocation { Nowhere, Here, There, Eveywhere };
enum Rating { WorstEver, Terrible, Bad, SubPar, Meh, Passable, Good, Great, Stellar };
enum Outcome { Win = 1, Loss = -1, Tie = 0 };