mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-18 12:31:22 +02:00
[CSharp/en]XML Comments can be used for external doc generation and for help within the IDE
This commit is contained in:
@@ -18,8 +18,10 @@ C# is an elegant and type-safe object-oriented language that enables developers
|
|||||||
Multi-line comments look like this
|
Multi-line comments look like this
|
||||||
*/
|
*/
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
|
//public void MethodOrClassOrOtherWithParsableHelp() {}
|
||||||
|
|
||||||
// Specify namespaces application will be using
|
// Specify namespaces application will be using
|
||||||
using System;
|
using System;
|
||||||
|
Reference in New Issue
Block a user