OpenRA.StreamExts.ReadInt32 C# (CSharp) Метод

ReadInt32() публичный статический Метод

public static ReadInt32 ( this s ) : int
s this
Результат int
        public static int ReadInt32(this Stream s)
        {
            return BitConverter.ToInt32(s.ReadBytes(4), 0);
        }