K
Ken Durden
Is there any way to control ordering of items in intellisense via
attributes?
For example, I have the following enum:
public enum ESeverity
{
Acceptable,
Low,
Medium,
High
};
In intellisense, this gets displayed as:
Acceptable
High
Low
Medium
in alphabetic order.
This is annoying since I would prefer to see the order as I defined it
in the code which is reflective of the order it makes sense to clients
in.
Thanks,
-ken
attributes?
For example, I have the following enum:
public enum ESeverity
{
Acceptable,
Low,
Medium,
High
};
In intellisense, this gets displayed as:
Acceptable
High
Low
Medium
in alphabetic order.
This is annoying since I would prefer to see the order as I defined it
in the code which is reflective of the order it makes sense to clients
in.
Thanks,
-ken