Author Topic: example sourcecode of a plugin.dll  (Read 3606 times)

jane

  • Newbie
  • *
  • Posts: 49
example sourcecode of a plugin.dll
« on: July 11, 2021, 06:32:25 PM »
I have searched for sourcefile example (showing 7 needed functions,for a plugin.dll, without any luck.
Also wonder if any libraries needed ,(using xxxx), seen from VA side? (those parameters tales VA care off. I suppose).
I read classes in dll must be static type.

regards


Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4757
  • RTFM
Re: example sourcecode of a plugin.dll
« Reply #1 on: July 11, 2021, 06:40:48 PM »
Examples in C# and VB.NET are included with the application in the "Plugin Samples" subfolder.

The basic plugin structure should only require a reference to "System", for the "Guid" class.
« Last Edit: February 27, 2022, 03:35:22 PM by Pfeil »

jane

  • Newbie
  • *
  • Posts: 49
Re: example sourcecode of a plugin.dll
« Reply #2 on: July 12, 2021, 01:22:22 AM »
Examples in C# and VB.NET are included with the application in the "Plugin Samples" subfolder.

The basic plugin structure should only require the a reference to "System", for the "Guid" class.

Thanks