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
JsonEncodedText is a struct. Passing it into StringBuilder.Append will box the value into an object, just to call ToString() on it.
Instead, grab the Value string from the JsonEncodedText and pass the string into StringBuilder.Append, so nothing is boxed.
0 commit comments