c# 288

#C#
C#客户端使用 http form的post方法提交图片

一、封装的类 using System; using System.Collections.Generic; using System.Linq; using System.Tex…

c#
2015-05-20 684

#C#
c#下实现ping操作代码

c#下实现ping操作代码 这里我写的是一个窗体程序。首先添加textbox,listbox,button控件,其中textbox录入域名或IP,listbox显示结果.  pri…

c#
2015-05-20 380

#C#
C# 两个目录同步的代码

C# 两个目录同步的代码 using System; using System.Collections.Generic; using System.IO; using System…

c#
2015-05-20 241

#C#
C#读取Excel文件,并保存为文本文件

using System; using System.Collections.Generic; using System.ComponentModel; using System.…

c#
2015-05-18 941

#C#
MVC API post方式调用

[HttpPost]         public string xdg()         { &…

c#
2015-05-15 572

#C#
C#连接数据库操作

vs2010中运行,必须引用Mysql.data /连接数据库/ using System; using System.Collections.Generic; using Sys…

c#
2015-05-12 845

#C#
C#递归遍历文件夹

List<FileInfo> list = new List<FileInfo>(); public void FindFile(string path, …

c#
2015-05-03 772

#C#
C# 生成简单验证码的代码

C#生成简单验证码的代码 html页面 <!-- Document : ASP.NET用一般处理程序生成验证码 Created on : 2008-10-13 17:04 A…

c#
2015-05-02 709

#C#
C# 委托现实范例代码

using System; using System.Collections.Generic; using System.Text; namespace Delegate { //…

c#
2015-05-02 263

#C#
jQuery Uploadify结合C#实现带进度条的上传

jQuery Uploadify结合C#实现带进度条的上传 <%@ Page Language="C#" AutoEventWireup="tr…

c#
2015-05-02 505

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

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

c#
2015-05-02 739

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

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

c#
2015-05-02 282
1 9 10 11 12 13 24