aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Translation/PTC/EncodingCache.cs
blob: 90d40c475c158b169073fff3db6e3e8ff282e736 (plain) (blame)
1
2
3
4
5
6
7
8
9
using System.Text;

namespace ARMeilleure.Translation.PTC
{
    static class EncodingCache
    {
        public static readonly Encoding UTF8NoBOM = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true);
    }
}