up vote 1 down vote favorite
3
share [g+] share [fb]

I have an enumeration for Status for a Task. Some of the statuses are considered obsolete, and I have marked them as obsolete, as seen below:

public enum TaskStatus
{
    [Description("")]
    NotSet = 0,
    Pending = 1,
    Ready = 2,
    Open = 3,
    Completed = 4,
    Closed = 5,
    [Description("On Hold")][Obsolete]
    OnHold = 6,
    [Obsolete]
    Canceled = 7
}

In my user interface I populate a drop down with values on the enumerations, but I want to ignore ones that are marked as obsolete. How would I got about doing this?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You could write a LINQ-query:

var availableTaks = typeof (TaskStatus).GetFields(BindingFlags.Static | BindingFlags.GetField | BindingFlags.Public)
    .Where(f => f.GetCustomAttributes(typeof (ObsoleteAttribute), false).Length == 0);
foreach(var task in availableTaks)
    Console.WriteLine(task);
link|improve this answer
Thank you! Worked perfectly! – mattruma Jan 10 '09 at 1:50
feedback
Type enumType = typeof(testEnum);
enumType.GetFields(BindingFlags.Static | BindingFlags.GetField | BindingFlags.Public)[i].GetCustomAttributes(true);

Then you can use your choice of method to loop through the array and checking if there are any custom attributes.

link|improve this answer
heh looks like I was real slow this time...the linq method is nice;-) – JoshBerke Jan 10 '09 at 1:41
welcome and thank you...another neat usage of this I found was to store a display name...So you could display On Hold instead of OnHold. Also if you want to localize it then you just store the key for the resource file... – JoshBerke Jan 10 '09 at 2:41
feedback

You can use the DebuggerHiddenAttribute and I know there is one that makes it hide from the properties explorer, but can't seem to remember the name.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.