Ejemplo n.º 1
0
        private Stopwatch CallSearch(TableLayout tableLayout, bool exitWhenFound)
        {
            var st = new Stopwatch();

            st.Start();
            tableLayout.Search(exitWhenFound);
            st.Stop();
            return(st);
        }