vote up 4 vote down star

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()
flag

67% accept rate
1  
Note that it is "a big deal" in the rare case that you need to use this as a System.Type argument to an attribute. "[<MyAttr(typeof<list<int>>.GetGenericTypeDefinition())>]" is obviously not allowed. – Brian Oct 30 at 21:40

1 Answer

vote up 4 vote down check

You want "typedefof"

printfn "%s" (typedefof<list<int>>).Name
link|flag
right, now I remember reading about it somewhere :-) thanks! – Mauricio Scheffer Oct 30 at 20:35
Hopefully the somewhere was my blog! lorgonblog.spaces.live.com/blog/… – Brian Oct 30 at 22:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.