AcTools.LapTimes.LevelDbUtils.WriteBatch.Put C# (CSharp) Méthode

Put() public méthode

Store the mapping "key->value" in the database.
public Put ( byte key, byte value ) : WriteBatch
key byte
value byte
Résultat WriteBatch
        public WriteBatch Put(byte[] key, byte[] value) {
            LevelDbInterop.leveldb_writebatch_put(Handle, key, key.Length, value, value.Length);
            return this;
        }

Same methods

WriteBatch::Put ( string key, string value ) : WriteBatch