Declaring Type: DemoClass
Namespace: DemoProject
Assembly: DemoProject
Signature | Description |
---|---|
Method1() | Example of an overloaded method without parameters |
Method1(string) | Example of an overloaded method accepting one parameter. |
Example of an overloaded method without parameters
public string Method1();
Remarks allow specification of more detailed information about a member, in this case a method. supplementing the information specified in the summary.
For overloaded members, there is a separate "Remarks" section for every overload.
string
The return value of a method can be documented using the returns
tag
ArgumentException
Exceptions can be documented using the exception
tag.
InvalidOperationException
Example of an overloaded method accepting one parameter.
public void Method1(string parameter);
parameter
string
Description of parameter parameter
provided using the param
element.
Remarks allow specification of more detailed information about a member, in this case a method. supplementing the information specified in the summary.
For overloaded members, there is a separate "Remarks" section for every overload.
Documentation generated by MdDocs