System.IO.Compression.ZipStorer.ZipStorer C# (CSharp) Méthode

ZipStorer() static private méthode

static private ZipStorer ( ) : System.Collections.Generic
Résultat System.Collections.Generic
        static ZipStorer()
        {
            // Generate CRC32 table
            CrcTable = new UInt32[256];
            for (int i = 0; i < CrcTable.Length; i++)
            {
                UInt32 c = (UInt32)i;
                for (int j = 0; j < 8; j++)
                {
                    if ((c & 1) != 0)
                        c = 3988292384 ^ (c >> 1);
                    else
                        c >>= 1;
                }
                CrcTable[i] = c;
            }
        }