I have a project which is full of compile time errors? Is there is any feature in Visual Studio to auto comment all Compile Time Errors.
Share
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.
You can highlight a block of code with your mouse and then press CTRL-K-C to comment out the hightlighted block.
You can reverse this action by highlighting the block of code and pressing CTRL-K-U.
There is no short cut or utility to comment out lines of code that do not compile; but it make help to comment out further ‘down’ in the file to limit the effect of cascading compiler errors (for example, a missing variable declaration will cascade to each occurence of the variable further down).