雪山之巅的阳光

冰雪天地的清冷,超凡脱俗的时空,一缕色彩,点缀在清蓝的背景中....那就是——雪山之巅的阳光

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  25 随笔 :: 1 文章 :: 137 评论 :: 6 引用

公告

 
static public string GenRandomString(int length)
  {
   if(length < 1)
    return "";
   Random ran = new Random();
   System.Text.StringBuilder  sb = new System.Text.StringBuilder();
   for(int i=0;i<length;i++)
    sb.Append(ran.Next(10));
   return sb.ToString();
  }

posted on 2006-02-22 14:41 雪山之巅 阅读(335) 评论(0) 编辑 收藏