public static string[] LoadEnglishDictionary()
{
// ReSharper disable once AssignNullToNotNullAttribute
using (var stream = typeof(CompleteDictionaryCheck).Assembly.GetManifestResourceStream(typeof(CompleteDictionaryCheck), "354984si.ngl"))
using (var reader = new StreamReader(stream)) {
return reader
.ReadToEnd()
.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
}
}