[Mono-list] Thread safe list in C#

2012-09-10 Thread vnan122
Hello every one, I just want to know how to make a list thread safe and is there any options for concurrent list like in JAVA. Hope to hear from some one soon. Thanks Veeresh -- View this message in context: http://mono.1490590.n4.nabble.com/Thread-safe-list-in-C-tp4656478.html Sent from

Re: [Mono-list] Thread safe list in C#

2012-09-10 Thread Rodrigo Kumpera
one soon. Thanks Veeresh -- View this message in context: Thread safe list in C#http://mono.1490590.n4.nabble.com/Thread-safe-list-in-C-tp4656478.html Sent from the Mono - General mailing list archivehttp://mono.1490590.n4.nabble.com/Mono-General-f1490591.htmlat

Re: [Mono-list] Thread safe list in C#

2012-09-10 Thread Jonathan Pryor
On Sep 3, 2012, at 1:31 AM, vnan122 veeresh...@gmail.com wrote: Hello every one, I just want to know how to make a list thread safe In practice, you don't; a method can do anything... By convention, you can generally assume that static members are thread safe and instance members are not