gpt4 book ai didi

reflection - 如何在 F# 中获取模块的类型

转载 作者:行者123 更新时间:2023-12-03 07:18:37 24 4
gpt4 key购买 nike

如何获取模块的“System.Type”?

例如模块:

module Foo =
let bar = 1

这不起作用:

printfn "%s" typeof<Foo>.Name

错误是:

The type 'Foo' is not defined

最佳答案

您可以向模块添加标记类型,然后从中发现模块的类型:

module Foo =  
type internal Marker = interface end
let t = typeof<Marker>.DeclaringType

关于reflection - 如何在 F# 中获取模块的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2297236/

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