blob: b87e0d7a393de4676862bbbef59ca68f94674ab3 (
plain)
1
2
3
4
5
6
7
8
9
|
using System.Text;
namespace ARMeilleure.Translation.PTC
{
internal static class EncodingCache
{
internal static readonly Encoding UTF8NoBOM = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true);
}
}
|