Given the following class and declartion, assuming I've popupated myValues with instances of CellValue, is there an easy way of returning from myValues a cellValue whose RowID=1 and ColumnID=3
Class CellValue
Public RowID, ColumnID As Integer
Public Value As Object
End Class
Public myValues As List(Of CellValue)
Instead of looping through each element in myValues, is there a way to do something like:
dim x as CellValue = myValues.???(RowID=1, ColumnID=3)