摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
摘要:
C#做外挂的常用API,本人用了很久,基本没发现问题usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Runtime.InteropServices;//这个肯定要的namespaceWindowsApp... 阅读全文
摘要:
C#中怎么计算两时间相差多少。计算2个时间之间的差,可以计算到时分秒!label1.Text = "2004-1-1 15:36:05";label2.Text = "2004-3-1 20:16:35";DateTime d1 =new DateTime(2004,1,1,15,36,05);Da... 阅读全文
摘要:
图片保存到数据库的方法: public void imgToDB(string sql) { //参数sql中要求保存的imge变量名称为@images //调用方法如:imgToDB("update UserPhoto setPhoto=@imageswhere UserNo='" + temp ... 阅读全文