OnLoadProperties() 보호된 추상적인 메소드

protected abstract OnLoadProperties ( ) : IEnumerable
리턴 IEnumerable
예제 #1
0
 public virtual IEnumerable <PropertySpec> LoadProperties(TypeSpec typeSpec)
 {
     if (typeSpec == null)
     {
         throw new ArgumentNullException(nameof(typeSpec));
     }
     return(typeSpec.OnLoadProperties());
 }
예제 #2
0
 public virtual IEnumerable<PropertySpec> LoadProperties(TypeSpec typeSpec)
 {
     if (typeSpec == null)
         throw new ArgumentNullException(nameof(typeSpec));
     return typeSpec.OnLoadProperties();
 }