You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's common to see calls to StringBuilder.Append(string) with a const string containing a single character, e.g. ",". These would be slightly cheaper as calls using a const char instead.
It's common to see calls to
StringBuilder.Append(string)with a conststringcontaining a single character, e.g.",". These would be slightly cheaper as calls using a constcharinstead.Category: Performance