摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace PinYin{ class Pinyin { /// /// 在指定的字符串列表CnStr中检索符合拼音索引字符串 /// /// 汉字字符串 /// 相对应的汉语拼音首字母串 public static string[] GetS... 阅读全文
posted @ 2013-09-27 10:13 Tjd 阅读(1810) 评论(0) 推荐(1)
摘要: //计算字符串的MD5值 public string GetMD5(string sDataIn) { MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider(); ... 阅读全文
posted @ 2013-09-25 16:59 Tjd 阅读(1058) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Net;using System.IO;namespace FTP操作{ /// /// FTP客户端操作类 /// public class FtpClient { #region 构造函数 /// /// 创建FTP工具 /// /// 默认不使用SSL,使用二进制传输方式,使用被动模式 /// /// /// 主机名称 ... 阅读全文
posted @ 2013-09-25 16:51 Tjd 阅读(1414) 评论(0) 推荐(1)