How to get the type of a generic type

Note: this entry has moved.

Type t = typeof(Dictionary<,>);
Type t2 = typeof(IList<>);
Type at = typeof(Predicate<>);

:D

1 Comment

Comments have been disabled for this content.