Stylecop is telling me to use /// instead of // when I´m commenting. What is the semantic difference for those two and when should I use which one?
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.
// denotes your own personal comments, where /// denote comments that can contain special data, e.g. markup for interpretation by Visual Studio – like:
This will tell Visual Studio the summary of the Bob class, and that will then show up in your code completion box.