ICSharpCode.SharpZipLib.Zip.ZipOutputStream.WriteLeInt C# (CSharp) Method

WriteLeInt() private method

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