fCraft.CommandReader.Clone C# (CSharp) Method

Clone() public method

Creates a copy of this command. Use the copy constructor instead of this, if possible.
public Clone ( ) : object
return object
        public object Clone() {
            return new CommandReader( this );
        }