c#下实现ping操作代码 这里我写的是一个窗体程序。首先添加textbox,listbox,button控件,其中textbox录入域名或IP,listbox显示结果. pri…
C# 两个目录同步的代码 using System; using System.Collections.Generic; using System.IO; using System…
一、封装的类 using System; using System.Collections.Generic; using System.Linq; using System.Tex…
using System; using System.Collections.Generic; using System.ComponentModel; using System.…
[HttpPost] public string xdg() { &…
vs2010中运行,必须引用Mysql.data /连接数据库/ using System; using System.Collections.Generic; using Sys…
List<FileInfo> list = new List<FileInfo>(); public void FindFile(string path, …
C#在服务器端裁剪图片代码 //图片路径 String oldPath = Server.MapPath("~/62223231.jpg"); //新图片路径 …
异步发送电子邮件代码 /// <summary> /// 异步发送电子邮件 /// </summary> /// <param name="…
C#查找字符串的所有排列组合 // 1. remove first char // 2. find permutations of the rest of chars // 3. …
1,判断图片的宽和高的比例,然后进行缩放,以便于使缩略图不变形。 2,DrawImage方法为缩略图绘制边框,这样,浏览起来比较美观。 3,调用Save方法将生成的缩略图保存到指定…
C#数字转换成大写人民币金额 如200转换成贰佰元 // 数字转换成大写金额 // 例如:(new Money(200)).ToString() == "贰佰元"…