C#
feifantiantang
不介绍了吧
展开
-
实现特定随机数的加密和解密
publicclassRondomEncrypt{//定义加密用户密码所用的伪随机数privatestaticstringrandStr="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";#region使用伪随机数加密后字符串///<summary>///使用伪随机数加密字符串...原创 2020-07-18 16:18:17 · 679 阅读 · 0 评论 -
实现对字符串的DES、MD5
1、DES加密,需要输入加密的秘钥,秘钥自定义publicclassDESCrypt{///<summary>///DES加密///</summary>///<paramname="pToEncrypt">加密字符串</param>///<paramname="sKey">自定义密钥</param>...原创 2020-07-18 16:14:52 · 92 阅读 · 0 评论 -
分享一个WininetAPI的helper类
usingSystem;usingSystem.Collections;usingSystem.Drawing;usingSystem.IO;usingSystem.Net;usingSystem.Runtime.InteropServices;usingSystem.Text;usingSystem.Text.RegularExpressions;///<summary>///wininet网页访问///</summar...原创 2020-07-18 16:07:02 · 155 阅读 · 0 评论 -
windows2008下IIS7.0伪静态配置
首先,是IIS7.0的配置,由于Windows Server 2008操作系统默认的IIS版本为7.0,我们知道,IIS7.0与IIS6.0的操作界面差别较大,如图(1)所示:1.IIS7.0操作界面:图(1)2.新建网站同时新建应用程序池与网站对应,注意,在IIS7下新建网站之后,程序会自动新建应用程序池与之对应;不需要再新建应用程序池。如图(2); 图(2)3.添加网站详细页面如图(3)所...原创 2020-06-20 23:17:14 · 297 阅读 · 0 评论 -
分享一个C#采集控制多个UVC摄像头设备的源码
using System;using System.Collections.Generic;using System.Drawing;using SharpCamera;using System.Windows.Forms;namespace SharpCameraDemo{ public partial class Form1 : Form { pu...原创 2020-04-09 23:33:33 · 1583 阅读 · 0 评论 -
Excel导出类
usingSystem;usingSystem.Web;usingSystem.Web.UI;usingSystem.IO;usingSystem.Web.UI.WebControls;namespaceDotNet.Utilities{publicclassExportExcel{...原创 2019-09-27 17:49:06 · 125 阅读 · 0 评论 -
ExcelHelper导入类
拿来主义,上手就用usingSystem;usingSystem.IO;usingSystem.Data;usingSystem.Collections;usingSystem.Data.OleDb;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebContr...原创 2019-09-27 17:48:21 · 497 阅读 · 0 评论 -
分享一个HttpHelper类
拿来主义,直接使用/// <summary> /// 类说明:HttpHelper类,用来实现Http访问,Post或者Get方式的,直接访问,带Cookie的,带证书的等方式,可以设置代理 /// </summary> using System; using System.Collections.Generic; using System.Tex...原创 2019-09-27 17:10:35 · 237 阅读 · 0 评论 -
分享一个SQLHelper类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30...原创 2019-05-10 10:29:56 · 1445 阅读 · 0 评论 -
分享一个C#调用摄像头的类
using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;using System.Drawing;using System.Drawing.Imaging;namespace Camera{ /// <summary> /// 一...原创 2018-04-08 18:06:32 · 4697 阅读 · 5 评论 -
分享一个csv文件转换类
using System.Data;using System.IO;namespace DotNet.Utilities{ /// /// CSV文件转换类 /// public static class CsvHelper { /// /// 导出报表为Csv ///转载 2017-07-08 11:45:37 · 626 阅读 · 0 评论 -
分享一个压缩和解压缩的公共类
using System;using System.IO;using System.Diagnostics;using Microsoft.Win32;using ICSharpCode.SharpZipLib.Checksums;using ICSharpCode.SharpZipLib.Zip;///压缩、解压缩类namespace DotNet.U转载 2017-07-08 11:40:03 · 217 阅读 · 0 评论