How can I talk to C # .dll in mIRC?

Is there any way? I noticed COM objects, but someone said that they only work with C / C ++ ...

And even then I’m not quite sure what it is. I want to create a script for mIRC, but I hate using MSL. Thanks.:)

+4
source share
1 answer

I did it many years ago.

The trick was to create a mixed-mode assembly / dll and provide the necessary export. Then the exported function will call the .NET code to process the request from mirc.

I will try to see if I have a code still lying (we are talking about 8 years ago).

+2
source

All Articles