if (obj.IsFoo) { ... }
than
if (! obj.IsNotFoo) { ... }
Still, changing a name is minor as far as design goes.
if (obj.IsFoo) { ... }
than
if (! obj.IsNotFoo) { ... }
Still, changing a name is minor as far as design goes.