摘要:
判断文件夹是否存在,不存在就创建if (!Directory.Exists(ss)){Directory.CreateDirectory(ss);}判断文件是否存在,不存在就创建if (!File.Exists(ss)){ Directory.Create(ss);}保存一个二进制文件到磁盘指定路径/// 保存一个二进制文件到磁盘指定路径/// /// 磁盘路径/// 二进制数据/// privatevoid SaveFile(string path, byte[] bytes){ try { //若他们先将以二进制的形式存在于数据库中,则需要先读出来,然后将其转换为 byte //byte. 阅读全文
摘要:
在字符处理过程中,我们可能需要对某些字符进行替换,而且可能会有多个字符,请比较下面两种写法:一个是用标准的replace函数,另外一个则是用正则表达式string input = "1,;3^e";string tt = input.Replace(",", "").Replace(";", "").Replace("^", "");string rr = Regex.Replace(input, @",|;|\^", "&q 阅读全文
摘要:
通常情况下,若是你将用户控件写好了放入窗体中,若是有不合理的代码,则会弹出错误提示框,不让你放。若是你之前只是随便加了一个用户控件,并且没有什么问题,但后来你又把控件改坏掉了,那么你打开就会报错(在窗体内显示错误,选择"忽略并继续"还是可以打开设计界面的)。一般在设计时打开设计视图报"未将对象引用设置到对象的实例",基本上都是你在用户控件的构造方法及Form Load事件中写入了计算的代码。如以下代码放入到别的控件中就会报错:using System;using System.Collections.Generic;using System.Compon 阅读全文
摘要:
select cols.name,cols.id,objs.name,objs.id from syscolumns colsINNER JOIN sysobjects objs on cols.id = objs.idwhere cols.name = 'GroupID' and objs.xtype = 'U' Sqlserver中系统表: 相关连接http://www.cr173.com/html/19592_1.htmlsysaltfiles 主数据库 保存数据库的文件syscharsets 主数据库 字符集与排序顺序sysconfigures 主数据库 阅读全文
摘要:
string[] myArr = { "Overred", "Medloy", "Xiaoguai", "Hare" };ArraySegment arrSeg = new ArraySegment(myArr);for (int i = arrSeg.Offset; i myArrSegMid = new ArraySegment(myArr, 1, 3);则取myArr的索引从1到3的值,转自:http://www.cnblogs.com/chenxizhang/archive/2009/04/23/14417 阅读全文
摘要:
int i = 9;if (i % 2 == 0) goto Found;else goto NoFound; NoFound: Console.WriteLine(i.ToString() + "不是偶数"); goto finish;//出口点 Found: Console.WriteLine(i.ToString() + "为偶数"); goto finish; //出口点 finish: Console.Read(); 阅读全文
摘要:
Type trypInfo = typeof(Program);// Program为类名//获得方法名string str = "包括的方法名列表:\r\n";MethodInfo[] methodInfo = trypInfo.GetMethods();foreach (MethodInfo mInfo in methodInfo){ str += mInfo.ToString() + "\r\n";} 注:需要引用using System.Reflection; 阅读全文
摘要:
exec sp_Msforeachtable 'drop table ?'删除数据库里面所有表执行上面的语句就可以了。值得注意的是若是有主外键关系的话,执行时会出现提示,你多执行几次就会将所有的表全部删除。 阅读全文
摘要:
CREATE TABLE TreeShip([ID] uniqueidentifier PRIMARY KEY NOT NULL,[Name] [nvarchar](50) NULL,[Remark] [nvarchar](500) NULL,[ParentID] uniqueidentifier not null)GOINSERT INTO TreeShip(ID,Name,Remark,ParentID) values ('47B9AF56-32D8-4561-8096-15D832C47B26','上海一中','源数据','0000 阅读全文
摘要:
dt.Columns.Add("ROWNUM", typeof(Int64));dt.Columns["ROWNUM"].SetOrdinal(0); 阅读全文