When n00b programmers forget how to make XML comments.
XML comments are used prominently in the C# programming language. They are written like this:
///<>
Where inside the brackets is an XML tag.
XML comments are used prominently in the C# programming language. They are written like this:
///<>
Where inside the brackets is an XML tag.
Proper:
///<description>
///The right way to make XML comments.
///</description>
Incorrect:
<///>description
///This will NOT work. You will get compile errors.
<///>
///<description>
///The right way to make XML comments.
///</description>
Incorrect:
<///>description
///This will NOT work. You will get compile errors.
<///>
by Qbou3mT March 05, 2015
