Ocronet.Dynamic.OcroFST.FstIO.write_int32_LE C# (CSharp) Method

write_int32_LE() protected static method

protected static write_int32_LE ( BinaryWriter writer, Int32 n ) : void
writer System.IO.BinaryWriter
n System.Int32
return void
        protected static void write_int32_LE(BinaryWriter writer, Int32 n)
        {
            writer.Write(n);
        }