fCraft.Command.Command C# (CSharp) Méthode

Command() public méthode

Creates a copy of an existing command.
public Command ( [ other ) : System
other [
Résultat 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;
        }