class CFoo
{
private string _filePathFormatString;
public string Foo()
{
System.Threading.Thread.VolatileRead(ref _filePathFormatString);
...
}
}
字符串是对象,为什么这VolatileRead
不能编译?我认为它应该匹配VolatileRead(ref object)
签名。