What to include in a Utility Library - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T21:13:25Zhttp://stackoverflow.com/feeds/question/407739http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/407739/what-to-include-in-a-utility-library3What to include in a Utility LibraryMitchel Sellers2009-01-02T19:06:59Z2009-01-04T14:20:26Z
<p>With more and more projects under my belt I find that I am often repeating many common tasks from project to project, client to client. So I have started to assemble a "utility" library, a collection of these common elements that are often repeated from project to project.</p>
<p>So far I have utilities to resize images, export data grids to excel, send e-mails, and replace tokenized messages. </p>
<p>If you were building/using a .NET utility class library, what types of processes would you see as helpful? What namespaces/groups would you envision?</p>
<p><strong>Update</strong></p>
<p>I am talking about an actual class library, separated into namespaces to group common elements.</p>
http://stackoverflow.com/questions/407739/what-to-include-in-a-utility-library/407747#4077472Answer by casperOne for What to include in a Utility LibrarycasperOne2009-01-02T19:09:27Z2009-01-02T19:09:27Z<p>Personally, I would put some of this functionality into separate libraries, as "utility" is a rather subjective term, what one person finds helpful is not so helpful to another.</p>
<p>If within the library it was broken up into descriptive namespaces, then I would say that's <em>better</em> (e.g. resize images would be in some sort of .Drawing namespace, or in a .Drawing.dll).</p>
http://stackoverflow.com/questions/407739/what-to-include-in-a-utility-library/407757#4077575Answer by Roger Lipscombe for What to include in a Utility LibraryRoger Lipscombe2009-01-02T19:12:41Z2009-01-04T14:20:26Z<ol>
<li>I wouldn't write a library called 'Common' or 'Utilities' or 'Misc' or... You get the idea. Instead, I'd have a directory called 'Lib', and have each area of functionality in a separate library under that. For example, I might have Lib/Trace, Lib/UI, Lib/Net, Lib/Web for a C++ project. For C#, I'd have Lib/Acme.Trace, Lib/Acme.Windows.Forms, Lib/Acme.Net, etc. (assuming your top-level namespace/company is called 'Acme').</li>
<li>YAGNI. Don't go writing code that you <em>might</em> need.</li>
<li>Don't throw things into a shared library until you've used them in two or more projects.</li>
</ol>
http://stackoverflow.com/questions/407739/what-to-include-in-a-utility-library/407762#4077620Answer by Refracted Paladin for What to include in a Utility LibraryRefracted Paladin2009-01-02T19:13:48Z2009-01-02T19:13:48Z<p>Though I am just a fledgling developer myself I have found RegEx functions and SQL filters to be quite useful. I also have Merge Replication functionality for MSSQL that has been quite handy for me so far.</p>
http://stackoverflow.com/questions/407739/what-to-include-in-a-utility-library/407768#4077681Answer by Lasse V. Karlsen for What to include in a Utility LibraryLasse V. Karlsen2009-01-02T19:15:52Z2009-01-02T19:15:52Z<p>I have plenty of things in my class library which I share between projects:</p>
<ul>
<li>IoC container and dependency injection framework</li>
<li>A full controller/observer framework, allows me to separate UI code from backlogic code</li>
<li>A reasonable database-independent set of classes for executing SQL, takes care of some of the syntax differences, mainly function names</li>
<li>Lots of other helper classes and utility methods for dealing with data</li>
<li>Some standardized internal storage classes, like <code>Tuple<..></code> etc.</li>
<li>Some custom collections, like <code>Set<T></code>, <code>Heap<T></code>, as well as plenty of utility methods for dealing with various types of collections</li>
</ul>
<p>The class library is added to when I need more stuff.</p>
http://stackoverflow.com/questions/407739/what-to-include-in-a-utility-library/407867#4078671Answer by Bernard for What to include in a Utility LibraryBernard2009-01-02T19:57:26Z2009-01-02T19:57:26Z<p>I'd suggest that instead of a "utility" library just make domain specific (graphics, authentication, validation, etc) libraries and only include them where they are needed. The key of course is decided how specific to be. More specificity is generally better.</p>
<p>Irregardless if it has no domain then you probably don't understand it fully meaning that you should re-evaluate what you are doing and trying to accomplish first.</p>
<p>Also, remember that what is useful in one or two projects may end up only being useful in one or two projects. Adding more classes than necessary only causes maintenance issues down the road.</p>