Introduction
ManualResetEvent is One of the Most important topic in C# threading.
This helps to manage Synchronize Threading with the help of Signals.
Those who wanted to learn advanced Threading, this topic is for them.
You can check AutoResetEvent for more...
Introduction
Lets Understand One of the important part of Threading .
Auto-Reset-Event class is one of the most important part of the Threading which helps to Manage Synchronize threading with the help of Signals.
Also we will discuss WaitOne() and Set() which will...
Can two Application Communicate with a single Port?
When two applications communicates with a serial port i.e. When One application send data to another application using a serial port then you will get an error . So this means you can not use a serial port in two application.
What...
Introduction
ReadOnlyCollection<T> is a collection which wrap List<T> and do not allow any modification in it.
Any modification in List<T> will be reflected to the ReadOnlyCollection<T>.
We can present ReadOnlyCollection as below
ReadOnlyCollection<T>...