zoukankan      html  css  js  c++  java
  • 支持 汉字 拼音 笔画 转换Microsoft Visual Studio International Pack 1.0 Beta1

    /*
        微软刚刚推出
        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
            ChnCharInfo.dll
            ChnCharInfoResource.dll
        下载分享
        
    https://files.cnblogs.com/Microshaoft/vsipk1beta.zip
    */


    //命令行编译:
    //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());
            }

        }


    }

  • 相关阅读:
    【Luogu】P3381最小费用最大流模板(SPFA找增广路)
    【Luogu】P1393动态逆序对(树套树)
    【Luogu】P2617Dynamic Ranking(树状数组套主席树)
    【Luogu】P2953牛的数字游戏(博弈论)
    【Luogu】P2530化工厂装箱员(DP)
    【Luogu】P3856公共子串(DP)
    【Luogu】P3847调整队形(DP)
    【Luogu】P3567Kur-Couriers(主席树)
    【Luogu】P3758可乐(矩阵优化DP)
    【Luogu】P1131时态同步(树形DP)
  • 原文地址:https://www.cnblogs.com/kakaliush/p/1659083.html
Copyright © 2011-2022 走看看