Quiz
1: | True or False: In C#, the Exit Try statement prevents the Finally statement from executing, thus enabling me to avoid any of the code execution in the Finally statement. |
A1: | False: The Finally statement will always execute, no matter what. |
2: | True or False: Using the Immediate and Command windows, I can change the values of variables that are in the current scope of execution. |
A2: | False: Using the Immediate window, you can modify variable values and evaluate statements that apply to the current scope of the executing code. The Command window allows you to execute Visual Studio .NET commands, such as opening files, adding items, and clearing the editors. |