随笔分类 -  My InterView With Professional C# 2005

First, It's a good book.When i get it by paying 120 yuan ,I enjoy it so fast .Of coures ,Maybe you have read it sometimes ago, i advise you to do it again,and you will know it deeper.
摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.SessionState;namespace TestWebApplication1{ public class ... 阅读全文
posted @ 2008-04-03 10:12 David.You 阅读(1085) 评论(0) 推荐(0)
摘要:6.1下面为用到委托的几种情况启动线程--在C#中,可以告诉计算机并行运行新的执行序列,这种序列就称为线程,通过System.Threading.Thread的一个实例使用方法Sta通用类库--在通用类库中执行子任务时,要用到委托。事件--GUI编程中也经常用盗委托事例:void EntryPoint(){//do anything;}//通过下面的代码执行新线程Thread NewThread ... 阅读全文
posted @ 2007-04-07 20:49 David.You 阅读(196) 评论(0) 推荐(0)
摘要:public voidmain(string[] args){Byte b = 255;checked{b++;}Console.WriteLine(b.ToString());}Results:Unhandled Exception :System.OverflowException:Arithmetic opertation resulted in an overflow at ...;if ... 阅读全文
posted @ 2007-04-02 15:44 David.You 阅读(219) 评论(0) 推荐(0)
摘要:Condition?True_Value:Flase_ValueExplain:if(Condition == True){return True_Value;}else{returnFlase_Value;}Condition:Boolean ExpressionTrue_Value:The Return Value When Condition Is TrueFalse_Value:The R... 阅读全文
posted @ 2007-04-01 22:03 David.You 阅读(197) 评论(0) 推荐(0)