dragonwell
Programmer
My C# class has a few "longish" methods. I'm assuming that the instructions for these non-static methods are incorporated into every instance. So, I'm thinking that I could create a "service" class that has static methods which take instances of my class and provide the same code. The idea is that the classes use up less memory, since they get the bulk of their instruction code externally, rather than having it all inside itself. Is it worth it?
David
David