fCraft.Command.Command C# (CSharp) Method

Command() public method

Creates a copy of an existing command.
public Command ( [ other ) : System
other [
return System
        public Command( [NotNull] Command other )
        {
            if ( other == null )
                throw new ArgumentNullException( "other" );
            Offset = other.Offset;
            Descriptor = other.Descriptor;
            RawMessage = other.RawMessage;
            Name = other.Name;
            IsConfirmed = other.IsConfirmed;
        }