Fixed a bug in the ValueCollection: SyncRoot was returning the IsSynchronized property of the internal collection
git-svn-id: file:///srv/devel/repo-conversion/nusu@327 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
7dd08c93e0
commit
3f1809e5cc
|
@ -252,7 +252,7 @@ namespace Nuclex.Support.Collections {
|
|||
/// The synchronization root used by the dictionary for thread synchronization
|
||||
/// </summary>
|
||||
object ICollection.SyncRoot {
|
||||
get { return this.dictionaryAsICollection.IsSynchronized; }
|
||||
get { return this.dictionaryAsICollection.SyncRoot; }
|
||||
}
|
||||
|
||||
#endregion // ICollection implementation
|
||||
|
|
Loading…
Reference in New Issue
Block a user