AcTools.LapTimes.LevelDbUtils.Iterator.Value C# (CSharp) Method

Value() public method

Return the value for the current entry. REQUIRES: Valid()
public Value ( ) : byte[]
return byte[]
        public byte[] Value() {
            int length;
            var value = LevelDbInterop.leveldb_iter_value(Handle, out length);
            Throw();

            var bytes = new byte[length];
            Marshal.Copy(value, bytes, 0, length);
            return bytes;
        }