`Encoding.EncodingName` concatenates a `string` with an `int` via
`string.Concat(object, object)`, which results in the `int` being
boxed.
This change avoids the box by calling `int.ToString()`,
allowing `string.Concat(string, string)` to be used.
Commit migrated from https://github.com/dotnet/coreclr/commit/
a73353e66181706bc98a65b92a921d476bfd322d
{
get
{
- return (Environment.GetResourceString("Globalization.cp_" + m_codePage));
+ return Environment.GetResourceString("Globalization.cp_" + m_codePage.ToString());
}
}