Performance difference

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

Is there any performance difference between a public method and a private
method? Or the difference is just the scope?

Thanks
Aaron
 
There is no performance difference. This is a design choice dealing with
the ability of an object to hide members, and has no effect on performance.

--- Nick
 
Back
Top