随笔分类 -  C#

about some knowlege of the language of C#, just learn to speak with C#
C# 链表
摘要:用C#实现链表的一些功能public class Node<T>{ public T data; public Node() { } public Node(T data) { this.data = data; } public Node<T> next = null; } public class Link<T> { //定义链表的头节点 private N... 阅读全文

posted @ 2009-06-04 15:43 simhare 阅读(505) 评论(0) 推荐(0)

--.net array
摘要:一、一维:int[] numbers = new int[]{1,2,3,4,5,6}; //不定长 int[] numbers = new int[3]{1,2,3};//定长 二、多维 int[,] numbers = new int[,]{{1,2,3},{1,2,3}}; //不定长 int[,] numbers = new int[2,2]{{1,2},{1,2}}; //定长 三、例子... 阅读全文

posted @ 2009-06-03 10:16 simhare 阅读(162) 评论(0) 推荐(0)

--IHttpHandlerFactory
摘要:System.Web-->IHttpHandlerFactory-->IHttpHandlerFactory有两个成员:========= GetHandler 返回实现 IHttpHandler 接口的类的实例。 ReleaseHandler 使工厂可以重用现有的处理程序实例。 阅读全文

posted @ 2009-05-31 16:59 simhare 阅读(144) 评论(0) 推荐(0)

----consoleApp的执行顺序----
摘要:----consoleApp的执行顺序---- 阅读全文

posted @ 2009-04-29 22:48 simhare 阅读(137) 评论(0) 推荐(0)

---C#--常量不能再被static(静态)修饰----
摘要:---C#--常量不能再被static(静态)修饰---- 阅读全文

posted @ 2009-04-29 22:30 simhare 阅读(568) 评论(0) 推荐(0)

C#索引器 泛型
摘要:----C#索引器----泛型 阅读全文

posted @ 2009-04-29 22:21 simhare 阅读(730) 评论(0) 推荐(0)

----关于继承---重写---
摘要:----关于继承---重写--- 阅读全文

posted @ 2009-04-29 21:43 simhare

---internal--protected internal --protected
摘要:---internal--protected internal --protected 阅读全文

posted @ 2009-04-29 18:07 simhare

a++与++a的区别
摘要:一个C++的函数:int operation(int numberA,int numberB){ return numberA + numberB;}然后声明了三个变量:int a = 2;int result1 = operation(5, a++);//5+2int result2 = operation(5+a, ++a);//8+4问result1和result2的值。原先以为考得是传值、... 阅读全文

posted @ 2008-08-26 21:04 simhare 阅读(608) 评论(0) 推荐(0)

partial method
摘要:partial method.... 阅读全文

posted @ 2007-11-22 14:08 simhare

普通委托
摘要:common delegate 阅读全文

posted @ 2007-11-22 09:45 simhare

javascript改变asp:textbox的值,如何触发OnTextChanged 事件
摘要:javascript改变asp:textbox的值,如何触发OnTextChanged 事件 阅读全文

posted @ 2007-11-20 11:18 simhare

Cache的无意仪例子
摘要:Cache的无意仪例子 阅读全文

posted @ 2007-11-20 10:37 simhare

about .NET Remoting
摘要:.NET Remoting 读书笔记 阅读全文

posted @ 2007-11-15 16:40 simhare 阅读(217) 评论(0) 推荐(0)

asp.net cache Management
摘要:读书笔记: cache Management------from web 阅读全文

posted @ 2007-11-15 16:06 simhare 阅读(471) 评论(0) 推荐(0)

yield
摘要:yield 阅读全文

posted @ 2007-11-12 16:29 simhare

Predicate 泛型委托
摘要:Predicate委托 阅读全文

posted @ 2007-11-12 15:46 simhare 阅读(482) 评论(0) 推荐(0)

泛型介绍
摘要:gener1 阅读全文

posted @ 2007-11-12 15:14 simhare

fas
摘要:generic 阅读全文

posted @ 2007-11-12 14:46 simhare

一个程序集可以包含多个命名空间
摘要:一个程序集可以包含多个命名空间 阅读全文

posted @ 2007-11-12 09:49 simhare

导航