Do I need to make an enum?
I want something like:
MyHardwareReport.Peripheral = ListOfPeripherals.Mouse
or
MyHardwareReport.Peripheral = ListOfPeripherals.Printer
How can I achieve something like this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, an
enumis exactly what you need. General practice would be to name theenumtype after the class, rather than calling it a “ListOfSomething”.