EncodingCache.cs 252 B

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