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 ( string key ) : WriteBatch
key string
return WriteBatch
        public WriteBatch Delete(string key) {
            return Delete(Encoding.ASCII.GetBytes(key));
        }

Same methods

WriteBatch::Delete ( byte key ) : WriteBatch