OnLoadGenericArguments() protected abstract method

protected abstract OnLoadGenericArguments ( ) : IEnumerable
return IEnumerable
Ejemplo n.º 1
0
 public virtual IEnumerable <TypeSpec> LoadGenericArguments(TypeSpec typeSpec)
 {
     if (typeSpec == null)
     {
         throw new ArgumentNullException(nameof(typeSpec));
     }
     return(typeSpec.OnLoadGenericArguments());
 }
Ejemplo n.º 2
0
 public virtual IEnumerable<TypeSpec> LoadGenericArguments(TypeSpec typeSpec)
 {
     if (typeSpec == null)
         throw new ArgumentNullException(nameof(typeSpec));
     return typeSpec.OnLoadGenericArguments();
 }