I hereby claim:
- I am johnbfair on github.
- I am johnbfair (https://keybase.io/johnbfair) on keybase.
- I have a public key ASBYYNimAjyE2w0U3058IktA-gv6Gn29mg7zqDw_gELZCgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Intended to be executed in LINQPad | |
| //using System.Reflection | |
| void Main() | |
| { | |
| TypeImplementsInterfaceFilter(typeof(MySample2), typeof(MySample1<MySample2>)).Dump(); | |
| } | |
| public interface ISample<T> { } |
| type ISample'<'T> = | |
| abstract member Sample<'T> : unit -> unit | |
| type SampleTest<'T>() = | |
| interface ISample'<'T> with | |
| member x.Sample<'T>() = () | |
| open System | |
| open System.Reflection |