ADBaseLibrary.AdobeHDS.BoxReader.EReadInt64 C# (CSharp) 메소드

EReadInt64() 공개 메소드

public EReadInt64 ( ) : long
리턴 long
        public long EReadInt64()
        {
            byte[] dta = ReadBytes(8);
            Array.Reverse(dta);
            return BitConverter.ToInt64(dta, 0);
        }