Since enumeration uses integers, what other structure can I use to give me enum-like access to the value linked to the name:
[I know this is wrong, looking for alternative]
private enum Project
{
Cleanup = new Guid("2ED3164-BB48-499B-86C4-A2B1114BF1"),
Maintenance = new Guid("39D31D4-28EC-4832-827B-A11129EB2"),
Upgrade = new Guid("892F865-E38D-46D7-809A-49510111C1"),
Sales = new Guid("A5690E7-1111-4AFB-B44D-1DF3AD66D435"),
Replacement = new Guid("11E5CBA2-EDDE-4ECA-BDFD-63BDBA725C8C"),
Modem = new Guid("6F686C73-504B-111-9A0B-850C26FDB25F"),
Audit = new Guid("30558C7-66D9-4189-9BD9-2B87D11190"),
Queries = new Guid("9985242-516A-4151-B7DD-851112F562")
}
EDIT (19-05-2011) SOLVED.
So I have actually needed the same type of solution in a new project an ended up using this format:
public enum Operator
{
[DescriptionAttribute("+")]
nAdd = 0,
[DescriptionAttribute("-")]
nSubtract = 1,
[DescriptionAttribute("*")]
nMultiply = 2,
[DescriptionAttribute("/")]
nDivide = 3,
[DescriptionAttribute("%")]
nModulus = 4,
[DescriptionAttribute("&")]
bAnd = 10,
[DescriptionAttribute("|")]
bOr = 12,
}
Getting the DescriptionAttribute is easy with:
public static string stringValueOf(Enum value)
{
FieldInfo fi = value.GetType().GetField(value.ToString());
DescriptionAttribute[] attributes = (DescriptionAttribute[])fi.GetCustomAttributes(typeof(DescriptionAttribute), false);
if (attributes.Length > 0)
{
return attributes[0].Description;
}
else
{
return value.ToString();
}
}
Implementation:
string descAttr = stringValueOf(Operator.nAdd);