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
// o should PrintMembers call ToString() on values to avoid boxing them in builder.Append((object)value)?
// Decision: let's do it
Currently: builder.Append((object)this.P1);
Proposed: builder.Append(this.P1.ToString());
From LDM 8/24/2020:
// o should PrintMembers call ToString() on values to avoid boxing them in builder.Append((object)value)?
// Decision: let's do it
Currently: builder.Append((object)this.P1);
Proposed: builder.Append(this.P1.ToString());