InterviewSolution
Saved Bookmarks
| 1. |
Why do we use Array.SyncRoot property of array class in C#? |
|
Answer» The ARRAY.SyncRoot property gets an OBJECT used to synchronize access to the Array. USE the SyncRoot property to implement their own SYNCHRONIZATION. This USAGE is for classes having arrays. |
|