Declaring Type: DemoClass
Namespace: DemoProject
Assembly: DemoProject
Signature | Description |
---|---|
DemoClass() | Initializes a new instance of DemoClass |
DemoClass(int) | Initializes a new instance of DemoClass with the specified parameters |
Initializes a new instance of DemoClass
public DemoClass();
Remarks allow specification of more detailed information about a member, in this case the constructor. supplementing the information specified in the summary
Initializes a new instance of DemoClass with the specified parameters
public DemoClass(int parameter);
parameter
int
Description of parameter parameter
provided using the param
element.
Remarks allow specification of more detailed information about a member, in this case the constructor. supplementing the information specified in the summary
ArgumentException
Exceptions can be documented using the exception
tag.
InvalidOperationException
Documentation generated by MdDocs