Mar 12, 2003 #1 R rmatthew Centurion Joined Dec 30, 2002 Messages 115 Location Texas I need to extract all possible values for an enumeration type and place them in an arraylist Private enum color red = 0 grn = 1 end enum What i want to return is an arraylist of red,grn Thanks in advance
I need to extract all possible values for an enumeration type and place them in an arraylist Private enum color red = 0 grn = 1 end enum What i want to return is an arraylist of red,grn Thanks in advance
Mar 12, 2003 #2 Q quwiltw Contributor Joined Sep 18, 2001 Messages 486 Location Washington, D.C. Take a look at System.Enum.GetNames() If you still have trouble let me know.