Hi all. I could use a little help with selecting a specific DataRow from a DataTable.

I am using the following code to select specific DataRows from a DataTable and this works fine, but many times I am looking for only a single row of data (there is not a possibility of multiple rows) and I was wondering if there is a better method to select a single row rather than the For-Next loop which seams set up specifically for multiple rows.

Or… am I just making too much of this? In this example, the DataTable does not have any controls bound to it.

Code:
For Each row As ScoreboardDataSet.tbl_StudentPhysicalDataRow In Me.ScoreboardDataSet.tbl_StudentPhysicalData.Select(String.Format("StudentID LIKE '{0}'", GWrestlerID))

    If Not row.LastWeighInWeight = Nothing Then MyVariable = row.LastWeighInWeight

Next Mrow
Thanks for your help.