Was just a quick question to see if there are different ways you code something similar when it comes to evaluating conditional statements/control flow.
For example:
- If Statements
- Switch Statements
Is there any tidier way to do these as I have basically the option of If (value == X) { // do X } and Switch(value) { case X: ...
When doing this with over 100 values is there any data driven approach that could be taken or any different evaluation methods that would tidy up the code?