in msdn document,there is a paragraph titiled "Thread Safety", why

  • Thread starter Thread starter Guest
  • Start date Start date
This means that access from different threads is synchronized, thus objects
internal state won't be corrupt
 
Nice,

This paragraph tells you which memebers of the class is safe to access
simultaneously from different threads. usually these are static members,
readonly properties and methods that calculate their return value based on
their parameters.
 
Back
Top