摘要: using System;using System.Data.SqlClient;namespace Test{ //连接数据库 public class Connection { private static string connectionString = ... 阅读全文
posted @ 2014-05-06 10:53 疯人愿 阅读(3885) 评论(0) 推荐(1) 编辑
摘要: using System;using System.IO;using System.Security.Cryptography;using System.Text;namespace Test{ public class MD5Code { /// /// ... 阅读全文
posted @ 2014-05-06 10:41 疯人愿 阅读(545) 评论(0) 推荐(1) 编辑
摘要: 从小到大/// /// 冒泡排序(从小到大)/// /// void Sort(List list){ for (int i = list.Count - 1; i > 0; --i) { for (int j = 0; j list[j + 1]) ... 阅读全文
posted @ 2014-05-06 10:35 疯人愿 阅读(498) 评论(2) 推荐(1) 编辑