コード例 #1
0
        public void Format_ThreeRecords()
        {
            IrbisConnection connection = Connection
                                         .ThrowIfNull("Connection");

            string[] actual = connection.FormatRecords
                              (
                "IBIS",
                "@brief",
                new[] { 1, 2, 3 }
                              );
            Write(string.Join(Environment.NewLine, actual));
        }