gpt4 book ai didi

f# - 如何在 F# 中使用 C# 可为空的日期时间

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

我有一个返回 DateTime 的 C# 方法吗?

我想做的是:

DateTime? D;
if (D == null)
{
...
}
else
{
Date = (DateTime)D;
...
}

但在 F# 中

如何做到这一点?


我试过这个:

    match (d: Nullable<DateTime>) with
| None -> printfn "null"
| NonNull s -> printfn "d %s" s.ToString

但它不起作用; “无”不编译

最佳答案

首先通过 Option.ofNullable 将您的值转换为 Option,然后匹配其结果:

let nd = csharpMethod()
match Option.ofNullable nd with
| Some d -> printfn "Date = %A" d
| None -> printfn "Null date"

关于f# - 如何在 F# 中使用 C# 可为空的日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56139714/

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