When trying to transform a one-dimensional DataTable (i.e. DataTable has only one row and many columns, or only one column and many rows) into a List, the resulting output differs from Cucumber 4 ...
Status: Discussion Issue or pull request needs to be discussed by Core Team Type: New Feature Issue contains a new feature or new component request ...
To get selected rows from one datatable first create the structure, select rows, copy the rows dtSelectedRows = dt.Clone(); DataRow[] dr1 = dt.Select("Name = '" + name + "'"); // use your criteria to ...