C#获取26个英文字母

时间:2020-07-10 01:22:52   收藏:0   阅读:230
            for (char i = A; i <= Z; i++)
            {
                //Response.Write(i.ToString() + "," + ((int)i).ToString());
            }
            for (int i = 65; i < 91; i++)
            {
                //Response.Write((char)i);
            }

 

原文:https://www.cnblogs.com/superfeeling/p/13277002.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!