J
Jim Strathmeyer
So, right now I have a class that is basically utility functions; it's
methods are all static because there is no class data, and I would never
create an object of this class. So I call these functions like
'Utility::Example()'. Is this a common way to do this? Or should I just
create a file of funcitons like I would in C?
methods are all static because there is no class data, and I would never
create an object of this class. So I call these functions like
'Utility::Example()'. Is this a common way to do this? Or should I just
create a file of funcitons like I would in C?