Skip to content

Instantly share code, notes, and snippets.

@dreamerJC
Created January 26, 2024 07:39
enum Color
{
Red,
Green,
Blue
}
var enumDictionary = new EnumDictionary<Color, string>
{
{ Color.Red, "Red" },
{ Color.Green, "Green" },
{ Color.Blue, "Blue" }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment