i have my code :
client.NotifyClientEnterView += (source, notification) => Console.WriteLine("ClientEnterView {0}: {1}", notification.Clid, notification.ClientNickname);
And i want to translate it in VB.NET (it's not working with a translator when i enter it)
I tryed AddHandler method, but it's not working (Beceause it's a eventhandler, not a event, like this : Addhandler client.NotifyClientEnterView, adressof <mysub>
)
I need to translate that for execute a sub when a client enter in the channel (in teamspeak)
My library : https://github.com/Spksh/TentacleSoftware.TeamSpeakQuery
Nota : client.NotifyClientEnterView as EVENTHANDLER, not a EVENT.
I hope you understand my problem, and thank for you help.