随笔分类 -  C# For Beginner

C# Basic
摘要:Part 36 Delegates in c#Part 37 Delegates usage in c#class Progim { public static void Main() { List empList = new List(); ... 阅读全文
posted @ 2015-10-12 01:41 Gester.Lin 阅读(348) 评论(0) 推荐(0)
摘要:Part 34 Problems of multiple class inheritancePart 35 Multiple class inheritance using interfaces 阅读全文
posted @ 2015-10-12 01:07 Gester.Lin 阅读(219) 评论(0) 推荐(0)
摘要:Difference between abstract classes and interfaces 阅读全文
posted @ 2015-10-12 01:06 Gester.Lin 阅读(183) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2015-10-12 01:05 Gester.Lin 阅读(152) 评论(0) 推荐(0)
摘要:Part30Interfaces in c#We create interfaces using interface keyword. just like classes interfaces also contains properties, methods, delegates or event... 阅读全文
posted @ 2015-10-12 01:03 Gester.Lin 阅读(187) 评论(0) 推荐(0)
摘要:Part 53 Reflection in C#Part 54 Reflection Examplehere is the codeprivate void btnDiscover_Click(object sender, EventArgs e){ lbMethods.Items.Clear... 阅读全文
posted @ 2015-10-12 00:57 Gester.Lin 阅读(215) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2015-10-12 00:55 Gester.Lin 阅读(167) 评论(0) 推荐(0)
摘要:Part 48 Difference between Types and Type MembersPart 49 Access Modifiers in C#Part 50 Internal and Protected Internal Access Modifiers in C#Part 51 A... 阅读全文
posted @ 2015-10-12 00:54 Gester.Lin 阅读(214) 评论(0) 推荐(0)
摘要:Difference between Convert ToString and ToString,String and StringBuilder 阅读全文
posted @ 2015-10-12 00:50 Gester.Lin 阅读(237) 评论(0) 推荐(0)
摘要:Part 57 Why should you override ToString Methodsometimes you can override ToString method like that:namepace Examplepublic class MainClass{ Customer ... 阅读全文
posted @ 2015-10-12 00:48 Gester.Lin 阅读(199) 评论(0) 推荐(0)
摘要:Performance of a multithreaded program 阅读全文
posted @ 2015-10-11 23:51 Gester.Lin 阅读(157) 评论(0) 推荐(0)
摘要:talking about thread deadlock 阅读全文
posted @ 2015-10-11 23:50 Gester.Lin 阅读(295) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2015-10-11 23:47 Gester.Lin 阅读(155) 评论(0) 推荐(0)
摘要:thread join,thread isalive function 阅读全文
posted @ 2015-10-11 23:43 Gester.Lin 阅读(268) 评论(0) 推荐(0)
摘要:Part 89 ParameterizedThreadStart delegateUse ParameterizedThreadStart delegate to pass data to the thread functionclass Program { static voi... 阅读全文
posted @ 2015-10-11 23:41 Gester.Lin 阅读(292) 评论(2) 推荐(0)
摘要:What is Func in C#?In simple terms,Func is just generic delegate. Depending on the requirement,the type parameters(T and TResult) can be replaced with... 阅读全文
posted @ 2015-10-11 22:43 Gester.Lin 阅读(185) 评论(0) 推荐(0)
摘要:class Program { static void Main(string[] args) { List persons = new List() { new Person{ID=101,Name="lin1... 阅读全文
posted @ 2015-10-11 22:40 Gester.Lin 阅读(260) 评论(0) 推荐(0)
摘要:What is an anonymous method?Anonymous method is a method without a name. Introduced in C# 2.0,they provide us a way of creating delegate instances wit... 阅读全文
posted @ 2015-09-12 02:53 Gester.Lin 阅读(166) 评论(0) 推荐(0)
摘要:Part 86 Multithreading in C#What is a Process:Process is what the operating system uses to facilitate(帮助) the execution of a program by providing the ... 阅读全文
posted @ 2015-09-12 01:08 Gester.Lin 阅读(250) 评论(0) 推荐(0)