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

EReadInt32() 공개 메소드

public EReadInt32 ( ) : int
리턴 int
        public int EReadInt32()
        {
            byte[] dta = ReadBytes(4);
            Array.Reverse(dta);
            return BitConverter.ToInt32(dta, 0);
        }