Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EncodingCache.cs
Go to the documentation of this file.
1using System.Text;
2
3namespace System.IO;
4
5internal static class EncodingCache
6{
7 internal static readonly Encoding UTF8NoBOM = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true);
8}
static readonly Encoding UTF8NoBOM