public void ExportToPDFCollection(DataTable table)
        {
            ExportUnitTest exportUnitTest = new ExportUnitTest();

            int rowCount = 0;
            foreach (DataRow row in table.Rows)
            {
                rowCount++;
                MessageBox.Show(rowCount.ToString());
            }
        }
Beispiel #2
0
        public void ExportToPDFCollection(DataTable table)
        {
            ExportUnitTest exportUnitTest = new ExportUnitTest();

            int rowCount = 0;

            foreach (DataRow row in table.Rows)
            {
                rowCount++;
                MessageBox.Show(rowCount.ToString());
            }
        }