PreviousNext

Signals in C#

by bill-s, 2018-01-26T06:12:52.000Z

Currently, the thread synchronization in ะก# causes some difficulties, in particular, when passing synchronization primitives between the objects of your application and supporting them in the future. The current model with Task and IAsyncResult, as well as with TPL, solve all issues through a proper design. However, an author would like to create a simple class that allows sending and receiving signals with a thread lock.

Read More