c# 288

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

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

c#
2015-05-20 718

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

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

c#
2015-05-20 404

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

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

c#
2015-05-20 268

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

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

c#
2015-05-18 962

#C#
MVC API post方式调用

[HttpPost]         public string xdg()         { &…

c#
2015-05-15 602

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

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

c#
2015-05-12 862

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

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

c#
2015-05-03 792

#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
1 9 10 11 12 13 24