Ejemplo n.º 1
0
        public static DocumentRecord ParseNextRecord(BinaryReader reader)
        {
            var record = new DocumentRecord();

            record.FillRecord(reader);
            return(record);
        }
        public static DocumentRecord ParseNextRecord(BinaryReader reader)
        {
            var record = new DocumentRecord();

            record.LineCount      = reader.ReadInt32();
            record.LineCollection = new StringCollection();
            for (int i = 0; i < record.LineCount; i++)
            {
                record.LineCollection.Add(new String(reader.ReadChars(80)));
            }

            return(record);
        }
Ejemplo n.º 3
0
        public static DocumentRecord ParseNextRecord(BinaryReader reader)
        {
            var record = new DocumentRecord();

            record.LineCount = reader.ReadInt32();
            record.LineCollection = new StringCollection();
            for (int i = 0; i < record.LineCount; i++)
            {
                record.LineCollection.Add(new String(reader.ReadChars(80)));
            }

            return record;
        }