登录
首页 » C# » C# 汉字转拼音比较全的类(支持大部分汉字) 源码下载

C# 汉字转拼音比较全的类(支持大部分汉字) 源码下载

于 2013-12-12 发布
0 182
下载积分: 1 下载次数: 0

代码说明:

C# 汉字转拼音比较全的类(支持大部分汉字) 源码下载

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 随机线条拼图实例源码下载
    随机线条拼图实例源码下载
    2014-06-11下载
    积分:1
  • 测试链接并显示查询数据
    using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;//Download by http://down.liehuo.netusing System.Data.SqlClient;namespace Case05_12{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { try { //生成连接数据库字符串 string ConStr = "data source=.;database=ljp;uid=sa;pwd=123"; //定义SqlConnection对象实例 SqlConnection con = new SqlConnection(ConStr); //定义Select查询语句 string Sql = "select*from biaoge"; SqlDataAdapter ada = new SqlDataAdapter(Sql, con); DataSet ds = new DataSet(); //定义DataSet对象实例 ada.Fill(ds); //连接数据表格,显示数据 this.dataGridView1.DataSource = ds.Tables[0].DefaultView; } catch { return; } } private void button2_Click(object sender, EventArgs e) { this.Close(); Application.Exit(); } }}
    2014-10-02下载
    积分:1
  • C# 音合成例子源码(TTS微软库)
    C# 语音合成例子源码(TTS微软库)
    2019-02-25下载
    积分:1
  • c# 对象拷贝属性 Copy方法
    c# 对象拷贝属性 Copy方法
    2014-07-15下载
    积分:1
  • 每项可以显示多行文本的ListBox控件
    每项可以显示多行文本的ListBox控件
    2013-10-02下载
    积分:1
  • 抓取价格,EXcel导入导出
    抓取指定面上的价格并导入到Excel表中
    2013-11-30下载
    积分:1
  • C# 6.0 and the .NET 4.6 Framework(7th).pdf
    C#学习PDF
    2020-12-06下载
    积分:1
  • C# 实现 MD5加密解密算法
    using System.Security.Cryptography;using    System.IO;  using    System.Text; ///MD5加密  public string MD5Encrypt(string    pToEncrypt,  string    sKey)    {       DESCryptoServiceProvider    des  =  new    DESCryptoServiceProvider();     byte[]    inputByteArray  =    Encoding.Default.GetBytes(pToEncrypt);       des.Key  =    ASCIIEncoding.ASCII.GetBytes(sKey);       des.IV  =    ASCIIEncoding.ASCII.GetBytes(sKey);       MemoryStream    ms  =  new    MemoryStream();       CryptoStream    cs  =  new    CryptoStream(ms,    des.CreateEncryptor(),CryptoStreamMode.Write);       cs.Write(inputByteArray,  0,    inputByteArray.Length);       cs.FlushFinalBlock();       StringBuilder    ret  =  new    StringBuilder();     foreach(byte    b  in    ms.ToArray())       {        ret.AppendFormat("{0:X2}",    b);       }       ret.ToString();     return    ret.ToString();      }  ///MD5解密  public string MD5Decrypt(string    pToDecrypt,  string    sKey)    {      DESCryptoServiceProvider    des  =  new    DESCryptoServiceProvider();     byte[]    inputByteArray  =  new  byte[pToDecrypt.Length  /  2];     for(int    x  =  0;    x  <    pToDecrypt.Length  /  2;    x )       {      int    i  =    (Convert.ToInt32(pToDecrypt.Substring(x  *  2,  2),  16));        inputByteArray[x]  =    (byte)i;       }       des.Key  =    ASCIIEncoding.ASCII.GetBytes(sKey);       des.IV  =    ASCIIEncoding.ASCII.GetBytes(sKey);       MemoryStream    ms  =  new    MemoryStream();       CryptoStream    cs  =  new    CryptoStream(ms,    des.CreateDecryptor(),CryptoStreamMode.Write);       cs.Write(inputByteArray,  0,    inputByteArray.Length);       cs.FlushFinalBlock();       StringBuilder    ret  =  new    StringBuilder();                  return    System.Text.Encoding.Default.GetString(ms.ToArray());      }
    2013-11-13下载
    积分:1
  • NeatUpload大文件上传例子,有进度条
    NeatUpload大文件上传例子,有进度条
    2015-06-18下载
    积分:1
  • bootstrap datetimepicker示例源码
    bootstrap datetimepicker示例源码
    2014-01-11下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载