C# 클래스 RJH.CommandLineHelper.Parser.SwitchInfo

A simple internal class for passing back to the caller some information about the switch. The internals/implementation of this class has privillaged access to the contents of the SwitchRecord class.
파일 보기 프로젝트 열기: suntong/lang

공개 메소드들

메소드 설명
SwitchInfo ( object rec ) : System

Constructor for the SwitchInfo class. Note, in order to hide to the outside world information not necessary to know, the constructor takes a System.Object (aka object) as it's registering type. If the type isn't of the correct type, an exception is thrown.

메소드 상세

SwitchInfo() 공개 메소드

Constructor for the SwitchInfo class. Note, in order to hide to the outside world information not necessary to know, the constructor takes a System.Object (aka object) as it's registering type. If the type isn't of the correct type, an exception is thrown.
Thrown if the rec parameter is not of /// the type SwitchRecord.
public SwitchInfo ( object rec ) : System
rec object The SwitchRecord for which this class store information.
리턴 System