/// <summary> /// Adds the specified command to this <see cref="TaconiteResult"/>. /// </summary> /// <param name="command">The command to add.</param> public void AddCommand(TaconiteCommand command) { if (command == null) throw new ArgumentNullException("command"); _commands.Add(command); }
/// <summary> /// Adds the specified command to this <see cref="TaconiteResult"/>. /// </summary> /// <param name="command">The command to add.</param> public void AddCommand(TaconiteCommand command) { if (command == null) { throw new ArgumentNullException("command"); } _commands.Add(command); }