blob: d9b38ace76a6a0caa5225c44d325dc743bf6d0ca (
plain) (
tree)
|
|
using System.Text;
namespace ARMeilleure.Translation.PTC
{
static class EncodingCache
{
public static readonly Encoding UTF8NoBOM = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true);
}
}
|