You'll want to add a reference to the DLL in your project. In the Solution Explorer, right click on References, and choose Add Reference... then pick your DLL.
If it's a .NET assembly, this will add a reference to your project. You can then import the namespace of the type you want to use, and use it in your project:
using
NamespaceFromDLL ;
//...
void Main()
{
TypeFromDLL newType = new TypeFromDLL(); // Use the type from the DLL as any other type now.
}
Reed Copsey, Jr. -
http://reedcopsey.com