static partial class Extenstions
{
static public string GetString(this Enum p_enum) {
return Enum.GetName(p_enum.GetType(), p_enum);
}
}