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

Key() 공개 메소드

Return the key for the current entry. REQUIRES: Valid()
public Key ( ) : byte[]
리턴 byte[]
        public byte[] Key() {
            int length;
            var key = LevelDbInterop.leveldb_iter_key(Handle, out length);
            Throw();

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