예제 #1
0
        public void ReadRawRecords_Test1()
        {
            IrbisConnection connection = Connection
                                         .ThrowIfNull("Connection");

            RawRecord[] records = connection.ReadRawRecords
                                  (
                "IBIS",
                new[] { 1, 2, 3 }
                                  );

            string text = string.Join
                          (
                Environment.NewLine,
                records.Select(record => string.Join("|", record.Lines).SafeSubstring(0, 50))
                          );

            Write(text);
        }