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

write_int64_LE() protected static method

protected static write_int64_LE ( BinaryWriter writer, System.Int64 n ) : void
writer System.IO.BinaryWriter
n System.Int64
return void
        protected static void write_int64_LE(BinaryWriter writer, Int64 n)
        {
            write_int32_LE(writer, (int)n);
            write_int32_LE(writer, (int)(n >> 32));
        }