Calling .js script using c# for a Plugin
-
Hi
I have 2 .js files that works flawlessly and I want to add them in my plugin already coded in c#, used for string modifications.
Is it possible to call .js script files using a plugin developed using c#?Thanks
-
It wouldn’t surprise me if it could be. The jN Notepad++ Plugin presumably embeds a JS engine, so you might search for that plugin’s source code to look for ideas.
As far as C# specifics, there are probably lots of hits for “embed JS in C#” in your favorite search engine for generically embedding, and I doubt the plugin version would be different from the general case.
Maybe others have some insight as well.
-
@PeterJones said in Calling .js script using c# for a Plugin:
embed JS in C#
Thank you!
I will give it a look :)