Is a readonly field in C# thread safe?
readonly
public class Foo { private readonly int _someField; public Foo() { _someField = 0; } publ
Not looking at your example but in general it depends what is readonly applied to, for example if dictionary is declared readonly you can still update keyvalue pairs