Recurity.Swf.SwfEncodedU32.SwfWriteEncodedU32 C# (CSharp) Method

SwfWriteEncodedU32() public static method

Writes an encoded ulong value to a given Stream
public static SwfWriteEncodedU32 ( ulong value, BinaryWriter target ) : void
value ulong Value to write
target System.IO.BinaryWriter Stream to write the value to
return void
        public static void SwfWriteEncodedU32(ulong value, BinaryWriter target)
        {
            byte[] data = SwfEncodeU32(value);
            target.Write(data);
        }