AcTools.LapTimes.LevelDbUtils.Iterator.Value C# (CSharp) 메소드

Value() 공개 메소드

Return the value for the current entry. REQUIRES: Valid()
public Value ( ) : byte[]
리턴 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;
        }