IsOpenGenericType() public static method

Determines whether a specified type is an open generic type - that is, if it contains generic parameters.
public static IsOpenGenericType ( IType type ) : bool
type IType
return bool
Ejemplo n.º 1
0
 private bool IsFullyConstructed()
 {
     foreach (IType arg in GenericArguments)
     {
         if (GenericsServices.IsOpenGenericType(arg))
         {
             return(false);
         }
     }
     return(true);
 }