[CSharp/en]XML Comments can be used for external doc generation and for help within the IDE

This commit is contained in:
Laoujin 2015-01-31 20:10:40 +01:00
parent bfac539c9f
commit 928b8404aa

View File

@ -18,8 +18,10 @@ C# is an elegant and type-safe object-oriented language that enables developers
Multi-line comments look like this
*/
/// <summary>
/// This is an XML documentation comment
/// This is an XML documentation comment which can be used to generate external
/// documentation or provide context help within an IDE
/// </summary>
//public void MethodOrClassOrOtherWithParsableHelp() {}
// Specify namespaces application will be using
using System;