ms_dos

  博客园  :: 首页  :: 新随笔  ::  :: 订阅 订阅  :: 管理

private bool isNumeric(string str)
{
         if (str == null || str.Length == 0)
             return false;
         System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEncoding();
         byte[] bytestr = ascii.GetBytes(str);
         foreach (byte c in bytestr)
         {
             if (c < 48 || c > 57)
             {
                 return false;
             }
         }
         return true;
}

posted on 2007-07-09 18:32  ms_dos  阅读(426)  评论(0编辑  收藏  举报