Whether to put method code in a VB.Net data storage class, or put it in a separate class?

Posted by Alan K on Stack Overflow See other posts from Stack Overflow or by Alan K
Published on 2013-10-22T21:35:33Z Indexed on 2013/10/22 21:54 UTC
Read the original article Hit count: 166

Filed under:
|
|

TLDR summary: (a) Should I include (lengthy) method code in classes which may spawn multiple objects at runtime, (b) does doing so cause memory usage bloat, (c) if so should I "outsource" the code to a class that is loaded only once and have the class methods call that, or alternatively (d) does the code get loaded only once with the object definition anyway and I'm worrying about nothing?

........

I don't know whether there's a good answer to this but if there is I haven't found it yet by searching in the usual places.

In my VB.Net (2010 if it matters) WinForms project I have about a dozen or so class objects in an object model. Some of these are pretty simple and do little more than act as data storage repositories. The ones further up the object model, however, have an increasing number of methods. There can be a significant number of higher level objects in use though the exact number will be runtime dependent so I can't be more precise than that.

As I was writing the method code for one of the top level ones I noticed that it was starting to get quite lengthy.

Memory optimisation is something of a lost art given how much memory the average PC has these days but I don't want to make my application a resource hog. So my questions for anyone who knows .Net way better than I do (of which there will be many) are:

  • Is the code loaded into memory with each instance of the class that's created?

  • Alternatively is it loaded only once with the definition of the class, and all derived objects just refer to that definition? (I'm not really sure how that could be possible given that, for example, event handlers can be assigned dynamically, but no harm asking.)

  • If the answer to the first one is yes, would it be more efficient to write the code in a "utility" object which is loaded only once and called from the real class' methods?

Any thoughts appreciated.

© Stack Overflow or respective owner

Related posts about vb.net

Related posts about class