我有两列。一列包含字符串值,另一列包含十进制值。我想通过选择字符串值来选择十进制值。
string decimal
Jewel 10
Hasan 20
我该如何选择Jewel使其返回10?
最佳答案
试试这个:
Dim selectedValues As List(Of InvoiceSOA)
selectedValues = DisputeList.FindAll(Function(p) p.ColumnName = "Jewel")
或者,如果您需要第一次出现“珠宝”,请使用以下代码:
Dim selectedValue As InvoiceSOA
selectedValue = DisputeList.Find(Function(p) p.ColumnName = "Jewel")
关于vb.net - 在VB.NET中使用List.Find,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14681642/