static bool isZeroInt(int? v) { if ( v == null ) return true; if ( v == 0 ) return true; return false; }