BinLib.Blib.GetInt C# (CSharp) Méthode

GetInt() private static méthode

private static GetInt ( GZipStream gz ) : int
gz System.IO.Compression.GZipStream
Résultat int
        private static int GetInt(GZipStream gz)
        {
            var b = new byte[4];
            gz.Read(b, 0, 4);
            int i = BitConverter.ToInt32(b, 0);
            return i;
        }