7 references to FindGenericType
System.Core (7)
System\Linq\IQueryable.cs (1)
84
Type enumType = TypeHelper.
FindGenericType
(typeof(IEnumerable<>), source.GetType());
System\Linq\SequenceQuery.cs (2)
80
Type iqType = TypeHelper.
FindGenericType
(typeof(IQueryable<>), expression.Type);
378
Type eType = TypeHelper.
FindGenericType
(typeof(Expression<>), tmp);
System\Linq\TypeHelper.cs (4)
8
return
FindGenericType
(typeof(IEnumerable<>), enumerableType) != null;
11
return
FindGenericType
(definition, type) != null;
14
Type ienumType =
FindGenericType
(typeof(IEnumerable<>), enumerableType);
25
Type found =
FindGenericType
(definition, itype);