Timothy Baldridge
Timothy Baldridge

Reputation: 10683

Get generic instance generic type using reflection

Given:

Type T = typeof(List<string>);

Requirement:

typeof(List<>) == SomeFunction(T)

Many times when I'm reflecting over a type and want to find all properties that return lists of some type...I need the "SomeFunction" shown above. I've searched and searched, but cannot figure out how to get List<> from List<string>. I can use T.GetGenericArguments(), but that only returns string so that doesn't help at all.

Upvotes: 2

Views: 646

Answers (1)

leppie
leppie

Reputation: 117320

typeof(List<string>).GetGenericTypeDefinition() == typeof(List<>)

Upvotes: 8

Related Questions