Hi, all I am very new to Mono.Cecil and I've a doubt regarding to generics,
I have something like:
public class IFoo<T>
{
T Property{ get; set; }
}
public class Foo<T> : IFoo<T>
{
public T Property {get;set; }
}
somewhere on the same assembly, I have "Foo<int>"
in my cecil code I can access to that Foo<int> and i get a
GenericInstanceType, with his GenericArguments (in this case only one:
int)
I want to get the closed interfaces from the GenericInstanceType.
Thank you in advance
--
--
mono-cecil
