Monitor V/S lock in C sharp Arabic #92
Suggested Videos
❑ Difference between Monitor and lock in C#.
Both Monitor class an lock provides a mechanism that synchronizes access to object . Lock is the shortcut for Monitor.Enter with try and finally.
In C# 4, it is implement slightly differently
So, in short, lock is shortcut and it’s the option for the basic usage .if you need more control to implement advanced multithreading solutions using TryEnter() wait() , Pulse(). & PulseAll() methods ,then the Montior class is your option.
Tags:
C sharp