public static bool Check(this FieldLimitType type, long fieldLimit)
 {
     return(((fieldLimit >> (int)type) & 1) != 0);
 }
 public static bool Check(this FieldLimitType type, int fieldLimit)
 {
     return(Check(type, (long)fieldLimit));
 }