AcTools.LapTimes.LevelDbUtils.WriteBatch.Delete C# (CSharp) 메소드

Delete() 공개 메소드

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

Same methods

WriteBatch::Delete ( string key ) : WriteBatch