标签: c# thread-safety
在C#中写入不同的类成员线程是否安全?我的意思是拥有X个线程,每个线程只能从一个类成员/属性读/写。
public class MyClass { public string Thread1WokringHere = null; public string Thread2WorkingHere { get; set;} }
MyClass实例的引用受锁的保护,我问如果我需要更精细的锁。