My Test Project
|
Class level summary documentation goes here. More...
Inherits TestInterface.
Public Member Functions | |
TestClass () | |
The class constructor. More... | |
void | SomeMethod (string s, int x) |
Description for SomeMethod. More... | |
int | SomeOtherMethod () |
Some other method. More... | |
int | InterfaceMethod (int n) |
Documentation that describes the method goes here. More... | |
Properties | |
string | Name [get] |
Name property. More... | |
Class level summary documentation goes here.
Longer comments can be associated with a type or member through the remarks tag.
TestClass.TestClass | ( | ) |
The class constructor.
int TestClass.InterfaceMethod | ( | int | n | ) |
Documentation that describes the method goes here.
n | Parameter n requires an integer argument. |
Implements TestInterface.
void TestClass.SomeMethod | ( | string | s, |
int | x | ||
) |
Description for SomeMethod.
s | Parameter description for s goes here. |
x | Extra parameter. |
You can use the cref attribute on any tag to reference a type or member and the compiler will check that the reference exists.
int TestClass.SomeOtherMethod | ( | ) |
Some other method.
Notice the use of the cref attribute to reference a specific method.
|
get |
Name property.
A value tag is used to describe the property value.