views:

58

answers:

3

Hi, I understand that in .NET 3.5 the

ValidatorCollection.IsSynchronized property

return a Boolean telling me if it is synchronized or not. However, I'm having a hard time understand what is it synchronizing with or to?

The MSDN manual simply says:

Gets a value that indicates whether the ValidatorCollection collection is synchronized.

which doesn't help much...

+2  A: 

It just means that it is thread-safe.

Gurdas Nijor
+1  A: 

It's synchronized with itself. You can perform operations on it from different threads, safely.

Frank Krueger
+2  A: 

MSDN also says in the remarks :

If the collection is synchronized, it is thread safe.

Thomas Levesque