ICSharpCode.SharpZipLib.Zip.ZipOutputStream.WriteLeInt C# (CSharp) Méthode

WriteLeInt() private méthode

Write an int in little endian byte order.
private WriteLeInt ( int value ) : void
value int
Résultat void
        private void WriteLeInt(int value)
        {
            unchecked {
                WriteLeShort(value);
                WriteLeShort(value >> 16);
            }
        }