We currently have a utility class that handles a lot of string formatting, date display and similar functions, as well as a generic / static class.
Is this the "right" way to do things, or should we instantiate the utility class as needed?
Our main goal here is to reduce the amount of memory, but application performance is also considered.
PS. We are using .NET 2.0
source
share