C# 클래스 NMaier.GetOptNet.GetOpt

파일 보기 프로젝트 열기: nmaier/getoptnet 1 사용 예제들

공개 메소드들

메소드 설명
Update ( IEnumerable args ) : void

Updates the parsed argument collection, but does not yet assign it back. See Also: GetOpt.Parse()

비공개 메소드들

메소드 설명
HandleUnknownArgument ( string arg, string val ) : void
MaybeHandleDashArgument ( string c, IEnumerator e ) : HandleResult
MaybeHandleSlashArgument ( string c, IEnumerator e ) : HandleResult
UpdateHandler ( NMaier.GetOptNet.ArgumentHandler handler, string value, string arg ) : void

메소드 상세

Update() 공개 메소드

Updates the parsed argument collection, but does not yet assign it back. See Also: GetOpt.Parse()
You messed something up The user supplied an argument that isn't recognized from it's name. The user supplied a value for an argument that cannot parsed to the correct type. The user supplied an argument more than once and the argument type does not allow this.
public Update ( IEnumerable args ) : void
args IEnumerable Arguments to parse
리턴 void