using System;
using System.Collections.Generic;
using Microsoft.VisualBasic;
//author:小恐龙
//ver:1.0
//把繁体中文转换为简体中文
public static class ClipboardFusionHelper
{
public static string ProcessText(string text)
{
text = Strings.StrConv(text, VbStrConv.SimplifiedChinese, 0); // 繁体转简体
//BFS.Dialog.ShowMessageInfo("SimplifiedChinese(简体中文如下):\r\n\r\n"+ text);
return text;
}
}