S
Steve Long
Anybody know how to make intellisense show a drop down the list of an enum
as a method argument like it does for .NET types?
Example:
public enum eGroupPlacements
{
GRP_RECORD,
GRP_REPORT
};
private void PlaceGroups(eGroupPlacements egrp)
{
// do something here
}
When I call the PlaceGroups method shouldn't I get a list of all the enum
members in the eGroupPlacements enumeration? How can I make that happen?
Thanks in advance for your help.
Steve
as a method argument like it does for .NET types?
Example:
public enum eGroupPlacements
{
GRP_RECORD,
GRP_REPORT
};
private void PlaceGroups(eGroupPlacements egrp)
{
// do something here
}
When I call the PlaceGroups method shouldn't I get a list of all the enum
members in the eGroupPlacements enumeration? How can I make that happen?
Thanks in advance for your help.
Steve