M_CommandLine_Text_Example__ctor_1 - adutton/commandline GitHub Wiki
Initializes a new instance of the Example class.
Namespace: CommandLine.Text
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
public Example(
string helpText,
IEnumerable<UnParserSettings> formatStyles,
Object sample
)VB
Public Sub New (
helpText As String,
formatStyles As IEnumerable(Of UnParserSettings),
sample As Object
)C++
public:
Example(
String^ helpText,
IEnumerable<UnParserSettings^>^ formatStyles,
Object^ sample
)F#
new :
helpText : string *
formatStyles : IEnumerable<UnParserSettings> *
sample : Object -> Example
- helpText
- Type: System.String
Example description. - formatStyles
- Type: System.Collections.Generic.IEnumerable(UnParserSettings)
A UnParserSettings instances sequence that defines command line arguments format. - sample
- Type: System.Object
A sample instance.