diff options
| author | ven <vendethiel@hotmail.fr> | 2016-03-13 10:45:33 +0100 | 
|---|---|---|
| committer | ven <vendethiel@hotmail.fr> | 2016-03-13 10:45:33 +0100 | 
| commit | ae7c7d881770449fdeb118b4eeccdaf419d2a6ed (patch) | |
| tree | f9b6930486d778a9968d18a1cd12258659f03e39 | |
| parent | 912e4d911c0de68becf1ad06d2aa9622ab6a8706 (diff) | |
| parent | e675c887fe27538805a2b8deddf3f3d37a653d7c (diff) | |
Merge pull request #1697 from DeanBecker/patch-1
Expanded XML Doc example
| -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 bcb35d4b..197f43e7 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -24,7 +24,9 @@ Multi-line comments look like this  /// 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() {} +/// <param name="firstParam">This is some parameter documentation for firstParam</param> +/// <returns>Information on the returned value of a function</returns> +//public void MethodOrClassOrOtherWithParsableHelp(string firstParam) {}  // Specify the namespaces this source code will be using  // The namespaces below are all part of the standard .NET Framework Class Library  | 
