|
|
<span style="font-size: 10pt; font-family: Lucida Console;">在C#项目中添加引用Microsoft.VisualBasic.dll, 可以在C#程序中直接使用VB.NET中丰富的函数<div style="border-right: #cccccc 1px solid; padding-right: 5px; border-top: #cccccc 1px solid; padding-left: 4px; font-size: 13px; padding-bottom: 4px; border-left: #cccccc 1px solid; width: 98%; padding-top: 4px; border-bottom: #cccccc 1px solid; background-color: #eeeeee;"> 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 <span style="border-right: #808080 1px solid; border-top: #808080 1px solid; display: none; border-left: #808080 1px solid; border-bottom: #808080 1px solid; background-color: #ffffff;" />{
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 } |
|