gpt4 book ai didi

f# - System.Collections.Generic 列表和 F#

转载 作者:行者123 更新时间:2023-12-02 05:32:26 27 4
gpt4 key购买 nike

我有一个 C# 类返回一个列表,使用 System.Collections.Generic 列表而不是 F# 列表

我想遍历列表以找到一个对象或找不到它。下面是我在 C# 中的做法。我如何在 F# 中完成类似的事情

foreach (AperioCaseObj caseObj in CaseList)
{
if (caseObj.CaseId == "")
{
}
else
{
}
}

最佳答案

match Seq.tryfind ((=) "") caseList with
None -> print_string "didn't find it"
| Some s -> printfn "found it: %s" s

关于f# - System.Collections.Generic 列表和 F#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/266800/

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