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

WriteLeShort() private méthode

Write an unsigned short in little endian byte order.
private WriteLeShort ( int value ) : void
value int
Résultat void
        private void WriteLeShort(int value)
        {
            unchecked {
                baseOutputStream_.WriteByte((byte)(value & 0xff));
                baseOutputStream_.WriteByte((byte)((value >> 8) & 0xff));
            }
        }