Is there anyway or any addin for VS2010 that can remove all the comments in the .cs file including “/// Summary” and “//”?
I don’t want to do it manully foreach .cs files.
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.
If you want it, you get it. Firstly read this http://msdn.microsoft.com/en-us/library/2k3te2cs.aspx
You exactly need expression that will match to the end of the line.
And replace it with
' 'or etc.And then you follow this manual http://geekswithblogs.net/MarkPearl/archive/2011/04/12/vs2010-multiline-find-amp-replace.aspx
and replace all.