コード例 #1
0
 public ConsoleCommand(
     int position,
     int length,
     ConsoleCommandName name,
     ConsoleCommandArgument[] arguments)
     : base(position, length)
 {
     _commandName = name;
     _arguments   = arguments;
 }
コード例 #2
0
ファイル: ConsoleCommand.cs プロジェクト: rsdn/janus
		public ConsoleCommand(
			int position,
			int length, 
			ConsoleCommandName name, 
			ConsoleCommandArgument[] arguments)
			: base(position, length)
		{
			_commandName = name;
			_arguments = arguments;
		}