C# 클래스 ManyConsole.Internal.CommandLineParser

파일 보기 프로젝트 열기: lysannschlegel/RDAExplorer

공개 메소드들

메소드 설명
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

비공개 메소드들

메소드 설명
CommandLineToArgvW ( [ lpCmdLine, int &pNumArgs ) : IntPtr

메소드 상세

Parse() 공개 정적인 메소드

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
리턴 string[]