I am putting information from a folder into a datatable. I'm putting the info into the datatable using the following code line:
dtUpgradeFileInfo.Rows.Add(nums[0],nums[1],nums[2],test1);
It appears to be working but I'm not as familiar with datatables in C# as I am in VB. How would i search the datatable where the first column has a certain value and the third column has the highest value in case there are multiple rows with the same value in the first column. I am also unsure of how to retrieve the info once I've found the row I need. The type for each column is int,int,int,string respectively.