summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLaoujin <woutervs@hotmail.com>2015-01-31 20:10:40 +0100
committerLaoujin <woutervs@hotmail.com>2015-01-31 20:20:24 +0100
commit928b8404aa7d47dbc50351f48fdca7334bb32647 (patch)
treef52577f8ab782de1d03d108da24a2a374f1c11e7
parentbfac539c9fe8aaf50e26fb4a97b24ad805ac293d (diff)
[CSharp/en]XML Comments can be used for external doc generation and for help within the IDE
-rw-r--r--csharp.html.markdown4
1 files changed, 3 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index 47dd9683..ad43e607 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -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;