John Smith
John Smith

Reputation: 4516

Is it possible to create a Firefox plugin that uses C# or C++ code? If so, how?

The idea is not to write the plugin itself using C# or C++ (although it would be nice if that were possible) but to have it access code written in C# or C++, preferably C#.

Thanks

Upvotes: 0

Views: 805

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564333

Firefox plugins can be written using NPAPI, which is a C API, so work perfectly well from C++. (This is probably the most common language used.)

Upvotes: 2

Related Questions