using System; using System.Text; namespace Lucidiot.Magellan { internal static class Helpers { internal static bool IsASCII(string value) { return Encoding.UTF8.GetByteCount(value) == value.Length; } } }