I have an class that asks for some defined questions that have defined answers. The problem is I never done this before and I still have some problems getting this to work. Here's my class below.
class Personal { public enum FaceOptions { Glasses = "Glasses", Contacts = "Contacts", NONE = "NONE", } public enum Sex { Male = "Male", Female = "Female", } }
What I am trying to do is use a foreach loop to display the options for each enum and give the user an option to pick one. Well I tried some of my ideas and nothing works. Can some one please show me how to do this.