0
votes
DoSomethingToThing(Thing n) vs Thing.DoSomething()
In general, if "something" is an action that "thing" naturally knows how to do, then you should use thing.doSomething(). That's good OO encapsulation, because otherwise DoSomethingToThing(thing) w …
