Get the enum as a string; not the int value, but the enum property name
var s = ConsoleColor.Blue.ToString("F"); // "Blue"
var attributes = FileAttributes.Hidden | FileAttributes.Archive; // Using flag enums
var s2 = attributes.ToString("F"); // "Hidden, Archive"