V Vadym Stetsyak Dec 7, 2005 #2 This means that access from different threads is synchronized, thus objects internal state won't be corrupt
This means that access from different threads is synchronized, thus objects internal state won't be corrupt
J Jon Skeet [C# MVP] Dec 7, 2005 #3 Nice said: how to comprehend the "Thread Safety"? Click to expand... This article might help: http://www.pobox.com/~skeet/csharp/threads/threadsafe.shtml Jon
Nice said: how to comprehend the "Thread Safety"? Click to expand... This article might help: http://www.pobox.com/~skeet/csharp/threads/threadsafe.shtml Jon
S Stoitcho Goutsev \(100\) [C# MVP] Dec 7, 2005 #4 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.
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.