C# Class PointTracer.Arguments

Class for wrapping the command-line parameters.
Mostrar archivo Open project: Temoto-kun/school-stuff

Public Methods

Method Description
Arguments ( ) : System

The default constructor.

Arguments ( Dictionary flags, Dictionary defs ) : System

The constructor, specifying the flags and the default arguments set.

Arguments ( IEnumerable args ) : System

The constructor, specifying the flags and the default arguments set.

Arguments ( IEnumerable flags, IEnumerable defs ) : System

The constructor, specifying the flags and the default arguments set.

Private Methods

Method Description
AddDefault ( IEnumerable defs ) : void
AddFlags ( IEnumerable flags ) : void

Method Details

Arguments() public method

The default constructor.
public Arguments ( ) : System
return System

Arguments() public method

The constructor, specifying the flags and the default arguments set.
public Arguments ( Dictionary flags, Dictionary defs ) : System
flags Dictionary The flags
defs Dictionary The default arguments
return System

Arguments() public method

The constructor, specifying the flags and the default arguments set.
public Arguments ( IEnumerable args ) : System
args IEnumerable The argument strings.
return System

Arguments() public method

The constructor, specifying the flags and the default arguments set.
public Arguments ( IEnumerable flags, IEnumerable defs ) : System
flags IEnumerable The flags
defs IEnumerable The default arguments
return System