예제 #1
0
 public static IEnumerable <PropertyInfo> FilterHiddenProperties(this IEnumerable <PropertyInfo> enumerable)
 {
     return(enumerable.Where(x => !PropertyFilter.ShouldFilter(x)));
 }