c# 288

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

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

c#
2015-05-20 383

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

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

c#
2015-05-20 243

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

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

c#
2015-05-20 686

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

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

c#
2015-05-18 943

#C#
MVC API post方式调用

[HttpPost]         public string xdg()         { &…

c#
2015-05-15 575

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

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

c#
2015-05-12 847

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

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

c#
2015-05-03 775

#C#
C#在服务器端裁剪图片代码

C#在服务器端裁剪图片代码 //图片路径 String oldPath = Server.MapPath("~/62223231.jpg"); //新图片路径 …

c#
2015-05-02 330

#C#
C#异步发送Email代码

异步发送电子邮件代码 /// <summary> /// 异步发送电子邮件 /// </summary> /// <param name="…

c#
2015-05-02 189

#C#
C#查找字符串的所有排列组合

C#查找字符串的所有排列组合 // 1. remove first char // 2. find permutations of the rest of chars // 3. …

c#
2015-05-02 794

#C#
C#实现图片生成缩略图

1,判断图片的宽和高的比例,然后进行缩放,以便于使缩略图不变形。 2,DrawImage方法为缩略图绘制边框,这样,浏览起来比较美观。 3,调用Save方法将生成的缩略图保存到指定…

c#
2015-05-02 502

#C#
C#数字转换成大写人民币金额

C#数字转换成大写人民币金额 如200转换成贰佰元 // 数字转换成大写金额 // 例如:(new Money(200)).ToString() == "贰佰元"…

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