Skip to content

Commit

Permalink
explicit Span<T>.ToString() for older runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
reyang committed Jul 26, 2022
1 parent 8c3b455 commit 88fb9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/OpenTelemetry.Tests/Shared/IEEE754Double.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ public override string ToString()

chars[index--] = (char)(bits & 0x01 | 0x30);

return $"{chars} ({this.DoubleValue})";
return $"{chars.ToString()} ({this.DoubleValue})";
}
}

0 comments on commit 88fb9cd

Please sign in to comment.