Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 1.71 KB

File metadata and controls

61 lines (38 loc) · 1.71 KB

DemoClass Constructors

Declaring Type: DemoClass
Namespace: DemoProject
Assembly: DemoProject

Overloads

Signature Description
DemoClass() Initializes a new instance of DemoClass
DemoClass(int) Initializes a new instance of DemoClass with the specified parameters

DemoClass()

Initializes a new instance of DemoClass

public DemoClass();

Remarks

Remarks allow specification of more detailed information about a member, in this case the constructor. supplementing the information specified in the summary

DemoClass(int)

Initializes a new instance of DemoClass with the specified parameters

public DemoClass(int parameter);

Parameters

parameter int

Description of parameter parameter provided using the param element.

Remarks

Remarks allow specification of more detailed information about a member, in this case the constructor. supplementing the information specified in the summary

Exceptions

ArgumentException

Exceptions can be documented using the exception tag.

InvalidOperationException


Documentation generated by MdDocs