C# Class ManyConsole.Internal.CommandLineParser

Datei anzeigen Open project: lysannschlegel/RDAExplorer

Public Methods

Method Description
Parse ( string commandLine ) : string[]

Splits a string in the same way that Windows splits up a command line into args (i.e. identical to how this is implemented under the covers: http://msdn.microsoft.com/en-us/library/system.environment.getcommandlineargs.aspx)

taken from http://stackoverflow.com/q/298830/5351

Private Methods

Method Description
CommandLineToArgvW ( [ lpCmdLine, int &pNumArgs ) : IntPtr

Method Details

Parse() public static method

Splits a string in the same way that Windows splits up a command line into args (i.e. identical to how this is implemented under the covers: http://msdn.microsoft.com/en-us/library/system.environment.getcommandlineargs.aspx)
taken from http://stackoverflow.com/q/298830/5351
public static Parse ( string commandLine ) : string[]
commandLine string a string containing command line arguments
return string[]