11 2013 档案

摘要:在博客园看到一篇关于Log4Net使用教程,比较详细,感谢这位热心的博主博客园地址:http://www.cnblogs.com/kissazi2/archive/2013/10/29/3393595.html 阅读全文
posted @ 2013-11-04 14:18 徽州猿人 阅读(162) 评论(0) 推荐(0)
摘要:1 /// 2 /// 计算每个字符出现的次数且打印 3 /// 4 /// 5 public void CharCount(string str) 6 { 7 Dictionary dicCount = new Dictionary(); 8 str = str.ToLower(); 9 foreach (char item in str.ToCharArray())10 {11 ... 阅读全文
posted @ 2013-11-02 23:55 徽州猿人 阅读(255) 评论(0) 推荐(0)