public static PropertyInfo GetRuntimeProperty(this CType type, String name)
 {
     return(type.GetProperty(name, defaultPublicFlags));
 }
 public override PropertyInfo GetProperty(string name, BindingFlags bindingAttr, Binder binder, CType returnType, CType[] types, ParameterModifier[] modifiers)
 {
     return(typeImpl.GetProperty(name, bindingAttr, binder, returnType, types, modifiers));
 }