public static IEnumerable <MethodInfo> GetRuntimeMethods(this CType type)
 {
     return(type.GetMethods(defaultNonPublicFlags).AsNothingButIEnumerable());
 }
 public override MethodInfo[] GetMethods(BindingFlags bindingAttr)
 {
     return(typeImpl.GetMethods(bindingAttr));
 }