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

skip_string() protected static method

protected static skip_string ( BinaryReader reader ) : void
reader System.IO.BinaryReader
return void
        protected static void skip_string(BinaryReader reader)
        {
            int n = read_int32_LE(reader);
            reader.ReadBytes(n);
        }