Some Knowlegate about ADO.Net
摘要:一:DataAdapter DataAdapter的作用是將DataSet連接到Database,起到一個橋梁的作用. 從本質上來說,DataAdapter是一個元Command. 它包括以下四個Command. SelectCommand,InsertCommand,UpdateCommand,DeleteCommand. 二: Ado.Net中添加數據表的架構 1:主鍵(主鍵...
阅读全文
Some Information About Delegate
摘要:1:The Difference between Delegate and function pointers delegate are object_oriented and type safe delegate can invoke static mothod and instance mothod,but function pointers only can invoke stat...
阅读全文
12个.net 开发者值得去读的国外Blog
摘要:Christopher Steen - Link blogger extrordinaire. Coding Horror (Jeff Atwood) - Excellent writer with a lot to say about how software development ought to be done, fun stuff about technology a...
阅读全文
接口與抽象類的區別(轉)
摘要:1.类是对对象的抽象,可以把抽象类理解为把类当作对象,抽象成的类 接口只是一个行为的规范或规定,微软的自定义接口总是后带able字段,证明其是表述一类类“我能做。。。”抽象类更多的是定义在一系列紧密相关的类间,而接口大多数是关系疏松但都实现某一功能的类中2.接口基本上不具备继承的任何具体特点,它仅仅承诺了能够调用的方法; 3.一个类一次可以实现若干个接口,但是只能扩展一个父类 4.接口可以用于...
阅读全文
編碼規則小結
摘要:1. 各地的方言 首先说明一下现在常用的一些编码方案: 1. 在中国,大陆最常用的就是GBK18030编码,除此之外还有GBK,GB2312,这几个编码的关系是这样的。 n 最早制定的汉字编码是GB2312,包括6763个汉字和682个其它符号 n 95年重新修订了编码,命名GBK1.0,共收录了21886个符号。 n ...
阅读全文