Tagged Questions

0
votes
2answers
184 views

Synchronization of SortedDictionary.iteri using readlock and writelock

let info = new SortedDictionary<string, string> ... Thread A -------- info.Add("abc", "def") Thread B -------- info |> Seq.iteri (fun i value -> ... Where do I place the readLock when I ...