我的问题是如何在VB.net中制作插件系统(2010) 我希望它能够以这种方式工作:
It would be a DLL File written in VB.Net
It could be loaded on startup (of the program) when placed in a specific folder (e.g. "\plugins\")
The DLL file would have the ability to read values from the base program, and run subroutines / functions. Basically full interaction with the program.
(I Know I probably have to write something big / hard for this but i'm all in it)
答案 0 :(得分:2)
希望这会有所帮助。您需要实现IPlugin
http://code.msdn.microsoft.com/windowsdesktop/Creating-a-simple-plugin-b6174b62 http://www.codeproject.com/Tips/546639/How-to-create-an-easy-plugin-system-in-Csharp
您还可以在stackoverflow中查看类似主题 Writing C# Plugin System