You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice the use of the cref attribute to reference a specific method </seealso>
53
+
</member>
54
+
<membername="M:SomeClass.Main(System.String[])">
55
+
<summary>
56
+
The entry point for the application.
57
+
</summary>
58
+
<paramname="args"> A list of command line arguments</param>
59
+
</member>
60
+
<membername="P:SomeClass.Name">
61
+
<summary>
62
+
Name property </summary>
63
+
<value>A value tag is used to describe the property value</value>
64
+
</member>
65
+
</members>
66
+
</doc>
67
+
```
68
+
66
69
## Compiling the Code
67
70
To compile the example, type the following command line:
68
71
@@ -75,7 +78,7 @@ The following sample provides a basic overview of a type that has been documente
75
78
76
79
- The documentation must be well-formed XML. If the XML is not well-formed, a warning is generated and the documentation file will contain a comment that says that an error was encountered.
77
80
78
-
- Developers are free to create their own set of tags. There is a recommended set of tags (see the Further Reading section). Some of the recommended tags have special meanings:
81
+
- Developers are free to create their own set of tags. There is a recommended set of tags (see [Recommended tags for documentation comments](recommended-tags-for-documentation-comments.md)). Some of the recommended tags have special meanings:
79
82
80
83
- The \<param> tag is used to describe parameters. If used, the compiler will verify that the parameter exists and that all parameters are described in the documentation. If the verification failed, the compiler issues a warning.
0 commit comments