简体   繁体   中英

C# plugin framework

I have a plugin framework implemented in C#, with the plugin interface written in C# and compiled in a DLL. Is there a way I can write a plugin for that framework in a .NET language other than C#? Thanks for your time!

The DLL is compiled to MSIL , not C#. Any language that uses the .Net framework will be able to reference and build off of the DLL, as it's not language dependant. You will be able to inherit your base plugin class from any .Net based language by default.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM