I have quite a bit of code that I find myself using over and over again in various applications. I recently decided to take the time to get them all organized in one location so I can reference them from any of my solutions. I started with a Class Library project and added a bunch of different functions and some derived controls that I use. Some of the functions are used by the derived controls as well as being called directly from applications. I built the project and started using the DLL in my projects.
I have a few questions regarding this custom DLL (I am using Visual C# 2010 Express):
- The first thing I noticed is that it doesn't seem to work quite like the stock Microsoft libraries. For instance, I can have "using System.Windows.Controls;" in a program, but I can only reference the namespace of my custom library with the using directive. It would be nice to organize my classes in a similar fashion if it makes sense to do so. Is it possible to have the classes nested like the Microsoft ones?
edit: For example... If I type at the top of my application code "using System.", I get a bunch of sub-namespaces to choose from. I continue typing "Windows.", and I get more sub-categories. If I add a reference to MyCustom.dll and start typing "using MyCustom.", I don't see any of my classes or subclasses. I'm just asking how to organize things within my class library so they behave like the stock libraries.
Is it a good idea to make one big DLL file with all of my reusable code? I don't have a ton of code at the moment, but I want to leave room for expansion. What is the best practice for this?
How do I deal with my DLL when I make an installer for my applications? I normally use InnoSetup to make my installers.
Here is my main concern... Say I use a function from my custom DLL in Application1 and someone installs it. I later add some features or make a change to that function for Application2 that I am building. If the new features break Application1 or change something in an undesirable way, what happens when a user installs Application2? Is my custom DLL shared between the applications or does each application have its own version of my DLL? Obviously, I would build a new version of Application1 to make it work with the new DLL, but there is no guarantee that the user would update it.
Thanks!