Пример #1
0
 public static bool IgnoreListContains(string type, string value)
 {
     if (!IgnoreList.ContainsKey(type))
     {
         return(false);
     }
     else
     {
         return(IgnoreList[type] == value);
     }
 }
Пример #2
0
 public List <PropertyInfo> ExcludeProperties(Type x)
 {
     return(IgnoreList.ContainsKey(x) ? IgnoreList[x] : new List <PropertyInfo>());
 }