c# 288

#C#
C#汉字转拼音和转成大写首字母

/// <summary> /// 汉字转拼音或转拼音首字母 /// </summary> public class ChineseToSpell { pr…

c#
2015-05-02 756

#C#
C#创建二叉搜索树

public static BinaryTreeNode BuildBinarySearchTree(int[] sortedArray) { if (sortedArray.Le…

c#
2015-05-02 301

#C#
C#检测网络驱动器的剩余磁盘空间

using System; using System.Management; class NetworkSpace { static void Main(string[] args…

c#
2015-05-02 663

#C#
一个将汉字转换成拼音的C#类代码

一个将汉字转换成拼音的C#类代码 using System; using System.Collections.Generic; using System.Text; namesp…

c#
2015-05-02 488

#C#
一个C#生成简单验证码的类

一个C#生成简单验证码的类 using System; using System.Collections.Generic; using System.Linq; using Sys…

c#
2015-05-02 255

#C#
C# 显示文件夹下的所有图片文件

<%@ Page Language="C#" EnableViewState="false" %> <%@ Import …

c#
2015-05-02 890

#C#
C#发送email代码范例

#region 邮件发送 /// <summary> /// 发送邮件支持HTML格式 先引用System.Net.Mail; /// </summary>…

c#
2015-05-02 908

#C#
C#常用操作

1. StreamWriter - 文件写入类 StreamWriter s = new StreamWriter(address + "/Menu.ini",…

c#
2015-05-02 517

#C#
C# 选择法排序演示

public int[] SelectionSort(int[] arr) { //1. Find min //2. Swap it with first element //3.…

c#
2015-05-02 822

#C#
C# 获取内存和CPU信息的代码

获取cpu信息 using System.Collections; using System.Collections.Generic; using System.Managemen…

c#
2015-05-02 593

#C#
c#通过DES加密算法加密大文件

using System.Collections; using System.Configuration; using System.Data; using System.Linq…

c#
2015-05-02 1,000

#C#
C#完全实现AES算法加密解密函数

C#完全实现AES算法加密解密函数 /// <summary> /// Aes加密、解密,密钥长度256,密钥长度不大于32个字节 /// </summary&g…

c#
2015-05-02 266
1 15 16 17 18 19 24