I\'m completely new to loading in libraries like this, but here\'s where I stand:
I have a homemade DLL file it\'s about as simple as it gets, the class itself and a
This is how you can get the classes if you know the type.
Assembly assembly = Assembly.LoadFrom("C:\\dll\\test.dll");
// Load the object
string fullTypeName = "MyNamespace.YourType";
YourType myType = assembly.CreateInstance(fullTypeName);
The full type name is important. Since you aren't adding the .dll you can't do a Using because it is not in your project.
If you want all I would just Jon Skeet answer.