Tagged Questions
3
votes
1answer
1k views
Migrating Handles from VB.NET to C#
I'm migrating some code from VB.NET to C# (3.5).
I find structurs like:
Public Event DataLoaded(ByVal sender As Object, ByVal e As EventArgs)
Protected Sub Mag_Button_Load_Click(ByVal sender As ...
2
votes
2answers
174 views
Using Event Handles Across Threads - C++
I have an application wherein I am sharing event handles across threads. These event handles are used to signal transmit complete and received data notifications of serial I/O to the application. ...