gpt4 book ai didi

vb.net - VB.NET中List.Find的使用

转载 作者:行者123 更新时间:2023-12-03 14:02:23 26 4
gpt4 key购买 nike

我有两列。一列包含字符串值,另一列包含十进制值。我想通过选择字符串值来选择十进制值。

string          decimal
Jewel 10
Hasan 20

如何选择 Jewel 使其返回 10?

最佳答案

尝试这个:

Dim selectedValues As List(Of InvoiceSOA)
selectedValues = DisputeList.FindAll(Function(p) p.ColumnName = "Jewel")

或者,如果您需要第一次出现“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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com