Example #1
0
 private bool ContainsGenericParameterInternal(ExportedType type)
 {
     return(false);
 }
Example #2
0
 /// <summary>
 /// Checks whether <paramref name="type"/> contains a <see cref="GenericVar"/> or a
 /// <see cref="GenericMVar"/>.
 /// </summary>
 /// <param name="type">Type</param>
 /// <returns><c>true</c> if <paramref name="type"/> contains a <see cref="GenericVar"/> or a
 /// <see cref="GenericMVar"/>.</returns>
 public static bool ContainsGenericParameter(ExportedType type)
 {
     return(new TypeHelper().ContainsGenericParameterInternal(type));
 }