示例#1
0
文件: DB.cs 项目: robpaveza/mc-mapper
        public void Write(WriteBatch batch, WriteOptions options)
        {
            IntPtr error;

            LevelDBInterop.leveldb_write(this.Handle, options.Handle, batch.Handle, out error);
            Throw(error);
        }