Is it possible to call another plug-in's method

Hi everyone! I wonder that is it possible to call a method from pluginB inside pluginA? or use an internal static variable from pluginB inside pluginA? If possible can you provide an example? Thanks!

Hi @tahirhan,

It’s best to move this API into an assembly that is referenced by both plug-ins.

– Dale

1 Like

Hmm, thanks @dale! I have an issue with event handlers but as you said maintaining eventHandlers at same assembly referencing by custom plugins may solve this situation. I will give it a try.