mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 05:58:35 +00:00
9 lines
252 B
C#
9 lines
252 B
C#
|
using System.Text;
|
||
|
|
||
|
namespace ARMeilleure.Translation.PTC
|
||
|
{
|
||
|
internal static class EncodingCache
|
||
|
{
|
||
|
internal static readonly Encoding UTF8NoBOM = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true);
|
||
|
}
|
||
|
}
|