Recurity.Swf.SwfEncodedU32.SwfWriteEncodedU32 C# (CSharp) 메소드

SwfWriteEncodedU32() 공개 정적인 메소드

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
리턴 void
        public static void SwfWriteEncodedU32(ulong value, BinaryWriter target)
        {
            byte[] data = SwfEncodeU32(value);
            target.Write(data);
        }