学习C#已经有两个多月,在网上查了很多资料,也整理了很多类。大部分来自网络,然后自己修改一下
发个帖整理一下,希望对园友有所帮助
1 热键注册类
1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
using System.Runtime.InteropServices;
5
using System.Windows.Forms;
6
7
namespace IDCard
8
2
3
4
5
6
7
8
2 加密解密类
1
using System;
2
using System.Data;
3
using System.Data.OleDb;
4
using System.Collections.Generic;
5
using System.Text;
6
using System.IO;
7
using System.Security.Cryptography;
8
using Microsoft.Win32;
9
using System.Configuration;
10
using System.Windows.Forms;
11
12
namespace IDCard
13
2
3
4
5
6
7
8
9
10
11
12
13
3 繁简体转换
1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
using Microsoft.VisualBasic;
5
namespace IDCard
6
}
2
3
4
5
6
4 读取系统配置文件
1
using System;
2
using System.IO;
3
using System.Runtime.InteropServices;
4
using System.Text;
5
using System.Collections;
6
using System.Collections.Specialized;
7
8
namespace IDCard
9
2
3
4
5
6
7
8
9