gpt4 book ai didi

f# - C# 到 F# 转换公共(public)部分类设备 : MarshalByRefObject

转载 作者:行者123 更新时间:2023-12-04 14:15:05 24 4
gpt4 key购买 nike

public partial class Device : MarshalByRefObject
{
internal bool FindTagName(string name, OneTag tag)
{
foreach (FuncSect fs in listFuncSect)
{
foreach (OneTag ot in fs.listTags)
{
if (ot != tag && ot.Name == name) return true;
}
}
return false;
}

仍然不知道如何将此“部分”和“内部”转换为 F#

谢谢你

最佳答案

正如 leppie 所说,没有对 partial 的直接支持。 ,虽然你可以用 intrinsic type extensions 达到类似的效果. F# 确实支持 internal方法,因此您的示例如下所示:

// primary definition somewhere
type Device() =
inherit MarshalByRefObject()
...


// type extension (roughly equivalent to partial class)
type Device with
member internal this.FindTagName(name:string, tag:OneTag) =
listFuncSect
|> Seq.exists
(fun fs ->
fs.listTags
|> Seq.exists (fun ot -> ot <> tag && ot.name = name))

关于f# - C# 到 F# 转换公共(public)部分类设备 : MarshalByRefObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33744936/

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