public ConsoleCommand(
     int position,
     int length,
     ConsoleCommandName name,
     ConsoleCommandArgument[] arguments)
     : base(position, length)
 {
     _commandName = name;
     _arguments   = arguments;
 }
예제 #2
0
		public ConsoleCommand(
			int position,
			int length, 
			ConsoleCommandName name, 
			ConsoleCommandArgument[] arguments)
			: base(position, length)
		{
			_commandName = name;
			_arguments = arguments;
		}