Is it possible to use System.Type as static parameter in F# type provider?

Viewed 372

I was wondering is it possible to use System.Type as the static parameter in F# type provider, so that I can write something like:

type HelperType = HelperProvider<typeof<int>>

The idea is, is it possible to let type provider generating some helper type based on some .NET type.

1 Answers
Related