F#的通用类型定义语法 [英] Generic type definition syntax on F#

查看:45
本文介绍了F#的通用类型定义语法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这没什么大不了的,但是F#中有什么方法可以在不调用GetGenericTypeDefinition()的情况下获得泛型类型定义? IComparable< _> IComparable< object> (或任何推断出的类型),而 IComparable<> 是语法错误.

This is not a big deal, but is there any way in F# to get a generic type definition without calling GetGenericTypeDefinition() ? IComparable<_> is IComparable<object> (or whatever type is inferred) and IComparable<> is a syntax error.

VB.NET

GetType(IComparable(Of ))

C#

typeof(IComparable<>)

F#

typeof<IComparable<_>>.GetGenericTypeDefinition()

推荐答案

您要"typedefof"

You want "typedefof"

printfn "%s" (typedefof<list<int>>).Name

这篇关于F#的通用类型定义语法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆