随笔分类 -  .net文章

.net技术技巧积累总结!
摘要:using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace HashTable { class HashTableDemo { public stri... 阅读全文
posted @ 2008-11-13 13:20 林台山人 阅读(847) 评论(0) 推荐(0)
摘要:审核结果: 待审核" : ""%> 阅读全文
posted @ 2008-11-12 12:29 林台山人 阅读(143) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Text;namespace BinaryTree{ class Program { static void Main(string[] args) { BTree bt = new... 阅读全文
posted @ 2008-10-21 15:19 林台山人 阅读(215) 评论(0) 推荐(0)
摘要:is,as,sizeof,typeof,GetType 这几个符号说来也多多少少的用过,今天就根据ProC#的讲述来总结一下: IS: 检查变量类型是否与指定类型相符,返回True,False.不报错. 老实说,我没怎么用过。看看下面的实例代码,很容易理解: int i ... 阅读全文
posted @ 2008-09-19 13:18 林台山人 阅读(314) 评论(0) 推荐(0)
摘要:先看看PetShop内DALFactory内数据工厂与数据库交互的根源-SQLServerDAL,采用的是SqlHelper.cs这一类文件,相信大家对这个都不会感到陌生了.在做PetShop的数据库访问之前,首先对关系进行对象建模,即我们通常所说到的O/R模型,在Modle层中对[Account]... 阅读全文
posted @ 2008-06-16 14:58 林台山人 阅读(364) 评论(0) 推荐(0)