1
// 命令行编译 : csc /r:Microsoft.VisualBasic.dll Test.cs
2
3
// 如果是用 Visual Studio .NET IDE, 请按以下方法为项目添加引用:
4
// 打开[解决方案资源管理器], 右击项目名称, 选择[添加引用],
5
// 从列表中选择 Microsoft Visual Basic .NET Runtime 组件.
6
7
using Microsoft.VisualBasic;
8
9
class Test
10
{
11
static void Main()
12
{
13
string s = "博客园-空军 [skyIV.cnBlogs.com]";
14
System.Console.WriteLine(s);
15
s = Strings.StrConv(s, VbStrConv.Wide , 0); // 半角转全角
16
s = Strings.StrConv(s, VbStrConv.TraditionalChinese, 0); // 简体转繁体
17
System.Console.WriteLine(s);
18
s = Strings.StrConv(s, VbStrConv.ProperCase , 0); // 首字母大写
19
s = Strings.StrConv(s, VbStrConv.Narrow , 0); // 全角转半角
20
s = Strings.StrConv(s, VbStrConv.SimplifiedChinese , 0); // 繁体转简体
21
System.Console.WriteLine(s);
22
}
23
}
程序输出:

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

博客园-空军 [skyIV.cnBlogs.com]
博客園-空軍 [skyIV.cnBlogs.com]
博客园-空军 [Skyiv.Cnblogs.Com]
博客園-空軍 [skyIV.cnBlogs.com]
博客园-空军 [Skyiv.Cnblogs.Com]