diff options
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r-- | csharp.html.markdown | 4 |
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; |