Tagged Questions
3
votes
7answers
752 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;
}
}
...