Could you please provide a snippet in C# demonstrating how we can use installed Addons in Visual Studio?
Hey again,
you can navigate to the required Addon via Addons page TestProject
click on it to open it, and scroll down to the proxy link, for example:
select C# and click download
you can add this as a reference to your project by:
so you will be able to use its methods:
in your runner (or the class which contains the main method) you should perform:
Assembly.LoadFrom("{PathToAddonFile");
before executing the run method.