How to import the toolkits

At the beginning of most C# programs, functionality that resides in other files is imported with the using statement. Built-in namespaces are usually imported like the following:

using System;

OpenEye Toolkits resides in the Openeye module. For example OEChem TK can imported as:

using OpenEye.OEChem;