Select from following answers:- Use #error to signal the error from your code so that it’s easier to find
- Use #line hidden to hide unnecessary lines from the debugger

- Use the ConditionalAttribute to remove the security checks from your debug build
- All Above
The #line directive can be used to tell the compiler to change the line number of a line of code. This way, you can remove the line numbers for the generated code so that exceptions will match the original code.
Show Correct Answer
Source: microsoft book (c#) | |
Alert Moderator