摘要:
namespace SampleListT{ class Program { static void Main(string[] args) { //using System.Collections.Generic; 命名空间... 阅读全文
摘要:
string path= System.Windows.Forms.Application.StartupPath + "\\ErrorLog\\"+fileName +".txt"; if (!File.Exists(p... 阅读全文
摘要:
枚举类型是一种的值类型,它用于声明一组命名的常数。 (1)枚举的声明:枚举声明用于声明新的枚举类型。 访问修辞符 enum 枚举名:基础类型 { 枚举成员 } 基础类型必须能够表示该枚举中定义的所有枚举数值。枚举声明可以显... 阅读全文
摘要:
ArrayList 的名称空间是 System.Collections。ArrayList 元素类型和数组不同,ArrayList 的各个元素的类型可以不同。声明对象//声明 ArrayList 有三种重载方法,较常用的有两种ArrayList al = new Ar... 阅读全文
摘要:
出处:http://hi.baidu.com/%BA%EC%C3%F1/blog/item/68025ee7807f972cb83820fb.html只需要在Global.asax加上几行代码就行了,我们是通过捕获用户的请求,然后通过RewritePath来实现的:... 阅读全文
摘要:
会使用索引,导致全表扫描情况1.不要使用in操作符,这样数据库会进行全表扫描,推荐方案:在业务密集的SQL当中尽量不采用IN操作符2.not in 使用not in也不会走索引推荐方案:用not exists或者(外联结+判断为空)来代替3 操作符(不等于) 使用同样... 阅读全文
摘要:
for (Int32 i = 0; i <= tasklist.Rows.Count - 1; i++) { DataG1.Rows.Add(); for (Int32 j = 0; j <= tasklist.Columns.Count - 1; j++) { o... 阅读全文