C# 클래스 CommandLine.CommandLineParserSettings

Specifies a set of features to configure a CommandLine.CommandLineParser behavior.
파일 보기 프로젝트 열기: Vaa3D/vaa3d_tools 1 사용 예제들

공개 메소드들

메소드 설명
CommandLineParserSettings ( ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class.

CommandLineParserSettings ( TextWriter helpWriter ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting the System.IO.TextWriter used for help method output.

CommandLineParserSettings ( bool caseSensitive ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting the case comparison behavior.

CommandLineParserSettings ( bool caseSensitive, TextWriter helpWriter ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison and help output options.

CommandLineParserSettings ( bool caseSensitive, bool mutuallyExclusive ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison and mutually exclusive behaviors.

CommandLineParserSettings ( bool caseSensitive, bool mutuallyExclusive, TextWriter helpWriter ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison, mutually exclusive behavior and help output option.

메소드 상세

CommandLineParserSettings() 공개 메소드

Initializes a new instance of the CommandLine.CommandLineParserSettings class.
public CommandLineParserSettings ( ) : System.IO
리턴 System.IO

CommandLineParserSettings() 공개 메소드

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting the System.IO.TextWriter used for help method output.
public CommandLineParserSettings ( TextWriter helpWriter ) : System.IO
helpWriter System.IO.TextWriter Any instance derived from , /// default . Setting this argument to null, will disable help screen.
리턴 System.IO

CommandLineParserSettings() 공개 메소드

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting the case comparison behavior.
public CommandLineParserSettings ( bool caseSensitive ) : System.IO
caseSensitive bool If set to true, parsing will be case sensitive.
리턴 System.IO

CommandLineParserSettings() 공개 메소드

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison and help output options.
public CommandLineParserSettings ( bool caseSensitive, TextWriter helpWriter ) : System.IO
caseSensitive bool If set to true, parsing will be case sensitive.
helpWriter System.IO.TextWriter Any instance derived from , /// default . Setting this argument to null, will disable help screen.
리턴 System.IO

CommandLineParserSettings() 공개 메소드

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison and mutually exclusive behaviors.
public CommandLineParserSettings ( bool caseSensitive, bool mutuallyExclusive ) : System.IO
caseSensitive bool If set to true, parsing will be case sensitive.
mutuallyExclusive bool If set to true, enable mutually exclusive behavior.
리턴 System.IO

CommandLineParserSettings() 공개 메소드

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison, mutually exclusive behavior and help output option.
public CommandLineParserSettings ( bool caseSensitive, bool mutuallyExclusive, TextWriter helpWriter ) : System.IO
caseSensitive bool If set to true, parsing will be case sensitive.
mutuallyExclusive bool If set to true, enable mutually exclusive behavior.
helpWriter System.IO.TextWriter Any instance derived from , /// default . Setting this argument to null, will disable help screen.
리턴 System.IO