c# 288

#C#
C#公历转农历算法

/// <summary> /// LunDay 的摘要说明。 /// 用法说明 /// 直接调用即可,比较简单 /// </summary> public…

c#
2015-04-24 491

#C#
C#通过域名获得IP地址的代码

using System.Net; string web = txtWeb.Text; IPHostEntry host = Dns.GetHostByName(web); IPA…

c#
2015-04-24 689

#C#
C# 运行cmd命令的代码

using System; using System.Collections.Generic; using System.Linq; using System.Text; usin…

c#
2015-04-24 979

#C#
C#监控指定目录的文件变化

要检查的变化,即从目录中删除目录或文件或文件夹、或者添加到一个新的文件或文件夹到一个目录下,我们必须使用FileSystemWatcher类。这个类允许我们通过程序来监控目录的变化…

c#
2015-04-24 508

#C#
C#获取本机IP地址

C#获取本机IP地址 using System.Net; using System.Net.Sockets; string name = Dns.GetHostName(); va…

c#
2015-04-24 224

#C#
C# 计算文件MD5值

public static string GetMd5Hash(string pathName) { string strResult = ""; string…

c#
2015-04-24 627

#C#
C#将当前屏幕抓取下来保存为图片

这是一个C#实现的屏幕抓取程序,可以抓取整个屏幕保存为指定格式的图片,并且保存当前控制台缓存到文本 using System; using System.Collections.G…

c#
2015-04-24 151

#C#
C# 计算文件SHA1值

public static string GetSHA1Hash(string pathName) { string strResult = ""; strin…

c#
2015-04-24 205

#C#
C#控制台列出当前所有可用的打印机列表

// The initial C# code for the WMI query was generated by WMI Code Generator, Version 5.00…

c#
2015-04-24 889

#C#
C# 实现ping功能

using System; using System.Collections.Generic; using System.Linq; using System.Text; usin…

c#
2015-04-24 948

#C#
C#从windows剪贴板获取并显示文本内容

using System; using System.Windows.Forms; namespace RobvanderWoude { class Paste { [STAThr…

c#
2015-04-24 822

#C#
ASP.NET加密解密

#region DES加密解密 /// <summary> /// DES加密 /// </summary> /// <param name=&quo…

c#
2015-04-24 448