alber2410
alber2410

Reputation: 13

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!

Upvotes: 1

Views: 591

Answers (1)

Dispersia
Dispersia

Reputation: 1438

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.

Upvotes: 2

Related Questions