I've created a C# library (Tempates > Visual C# > Windows > Class Library) called VlcController
, with one class Controller.cs
, containing one class, started like so,
namespace Vlc
{
class Controller
{
// Rest of code..
}
}
When I build it t o a .dll, and include in in a seperate project, it has no issue with using Vlc;
, but it cannot find the Controller
class. Is there something I need to do to get my class included in the .dll?
If needed I can upload the .dll too, just ask.