Skip to content

Latest commit

 

History

History
81 lines (49 loc) · 1.97 KB

File metadata and controls

81 lines (49 loc) · 1.97 KB

DemoClass.Method1 Method

Declaring Type: DemoClass
Namespace: DemoProject
Assembly: DemoProject

Overloads

Signature Description
Method1() Example of an overloaded method without parameters
Method1(string) Example of an overloaded method accepting one parameter.

Method1()

Example of an overloaded method without parameters

public string Method1();

Remarks

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.

Returns

string

The return value of a method can be documented using the returns tag

Exceptions

ArgumentException

Exceptions can be documented using the exception tag.

InvalidOperationException

See Also

Method1(string)

Example of an overloaded method accepting one parameter.

public void Method1(string parameter);

Parameters

parameter string

Description of parameter parameter provided using the param element.

Remarks

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.

See Also


Documentation generated by MdDocs