⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 noname1.cs

📁 汉字拼音转换程序
💻 CS
字号:
/*
	微软刚刚推出
	Microsoft Visual Studio International Pack 1.0 Beta1
	支持 汉字 拼音 笔画 转换
	http://www.microsoft.com/downloads/details.aspx?FamilyID=e432aeaa-7b6f-4b0d-968b-b6aafda05e34&DisplayLang=en
	我已经提取了 dll assembly

*/

//csc.exe noname1.cs /r:ChnCharInfo.dll

namespace Microshaoft
{
	using System;
	using System.Collections.Generic;
	using System.Collections.ObjectModel;

	using Microsoft.International.Converters.PinYinConverter;

	public class Class1
	{
		static void Main(string[] args)
		{
			//汉字的笔画数
			int i = ChineseChar.GetStrokeNumber('饕');
			Console.WriteLine(i);
			
			//汉字的所有拼音拼写
			ChineseChar x = new ChineseChar('说');
			ReadOnlyCollection<string> roc = x.Pinyins;
			foreach(string s in roc)
			{
				Console.WriteLine(s);
			}

			//拼音拼写的所有汉字
			Char[] chars = ChineseChar.GetChars("YUE4");
			foreach(Char c in chars)
			{
				Console.WriteLine(c);
			}

			//笔画数的所有汉字
			chars = ChineseChar.GetChars(20);
			foreach(Char c in chars)
			{
				Console.WriteLine(c);
			}
			Console.WriteLine(Environment.Version.ToString());
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -