mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-23 06:03:07 +03:00
[CSharp/en]XML Comments can be used for external doc generation and for help within the IDE
This commit is contained in:
parent
bfac539c9f
commit
928b8404aa
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user