Exemple #1
0
        public void Search_Format()
        {
            IrbisConnection connection = Connection
                                         .ThrowIfNull("Connection");

            FoundItem[] found = connection.SearchFormat
                                (
                "T=A$",
                IrbisFormat.Brief
                                );
            Write
            (
                "Found: " + found.Length + ": "
                + string.Join
                (
                    "| ",
                    found.Select
                    (
                        item => item.ToString()
                        .SafeSubstring(0, 20)
                    )
                )
                .SafeSubstring(0, 100)
            );
        }