Tagged Questions
4
votes
7answers
770 views
Is the C# '??' operator thread safe?
Everyone knows that this is not thread safe:
public StringBuilder Builder
{
get
{
if (_builder != null)
_builder = new StringBuilder();
return _builder;
}
}
...