namespace SK.Framework { /// /// 英文字母表 /// public static class Alphabet { public static char[] Values = new char[26] { 'A','B','C','D','E','F','G','H','I','G','K','L','M', 'N','O','P','Q','R','S','T','U','V','W','X','Y','Z', }; } }