摘要:
public static string conn= "Provider=SQLOLEDB;Server=192.168.1.1;Initial Catalog= database_name;User ID=sa; Password=pwd;"; 阅读全文
摘要:
http://blog.csdn.net/sky_zt/article/details/5950932#if DEBUG System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch(); sw.Start();#endif/////////////////////==============中间各种程序====================//////////////#if DEBUG sw.Stop(); TimeSpan ts = sw.Elapsed; string elapsedTime = String.Fo 阅读全文
摘要:
http://hi.baidu.com/jia818915/blog/item/f81090c29bd0911e0ff4773c.html 阅读全文
摘要:
using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Data.OleDb;using CrystalDecisions.S 阅读全文
摘要:
http://www.connectionstrings.com/ 阅读全文
摘要:
http://blog.csdn.net/BlueMap/article/details/5710092 阅读全文
摘要:
C#3.0(VS2008)支持在任何类型上扩展生成自定义的方法。比如说想在string类型的对象里面多一个ToInt32(),来方便的将字符转换成整形。在实现的过程中的关键字为static和this下面我们来做一个在string类型中新建一个ToInt32的自定义方法View Code public static class Extension//必须先声明一个静态类,类名随意 { public static int ToInt32(this string In)//扩建的方法必须是静态方法,参数里面必须含有this关键字,this关键字后面的类型为需要扩展的类型 ... 阅读全文