In my .NET application I allow people to add their plugins. However I've got several helper functions which will help them.
What's the best way to provide access to these functions for plugins?
Shall I just add a new DLL to the project and put all helper methods / classes to there and tell plugin developers to link that DLL?
I'm currently designing this system, never developed a plugin system before, so don't want to make a stupid decision.