BinaryHelper.Extensions.ReadBInt32 C# (CSharp) 메소드

ReadBInt32() 공개 정적인 메소드

public static ReadBInt32 ( this Reader ) : int
Reader this
리턴 int
        public static int ReadBInt32(this BinaryReader Reader)
        {
            byte[] array = Reader.ReadBytes(4);
                Array.Reverse(array);
            return BitConverter.ToInt32(array, 0);
        }