AcTools.LapTimes.LevelDbUtils.WriteBatch.Delete C# (CSharp) Method

Delete() public method

If the database contains a mapping for "key", erase it. Else do nothing.
public Delete ( byte key ) : WriteBatch
key byte
return WriteBatch
        public WriteBatch Delete(byte[] key) {
            LevelDbInterop.leveldb_writebatch_delete(Handle, key, key.Length);
            return this;
        }

Same methods

WriteBatch::Delete ( string key ) : WriteBatch