Hi all,
I'm developing a serial port communication application. I've written a class. In serial port's DataReceived event, I need to invoke a method to do some string operations. I want to make these operations in another thread.
But since my application is not a windows from application (it's a class only), it does not have the Invoke() method.
So, how can I invoke a method in a class which does not have Invoke() method?
Thanks