Complete
OSNN Addict
- Joined
- 25 Aug 2005
- Messages
- 94
I want to create a seperate Utility class -- a "CUtil" class -- to do some basic fundamental stuff like string conversions.
OK, now, I can make all those methods as static so that I do not have to instantiate the CUtil class in order to do things.
um...
So how would that look in the calling routine?
Would it be something like this:
OK, now, I can make all those methods as static so that I do not have to instantiate the CUtil class in order to do things.
um...
So how would that look in the calling routine?
Would it be something like this:
Code:
str_return = CUtil:FunctionName(stuff);