using System.Text; namespace Robust.Shared.Utility { public static class EncodingHelpers { /// /// Custom version of that DOESN'T do BOMs. /// public static readonly Encoding UTF8 = new UTF8Encoding(); } }