10 2015 档案
摘要:Part 36 Delegates in c#Part 37 Delegates usage in c#class Progim { public static void Main() { List empList = new List(); ...
阅读全文
摘要:Part 34 Problems of multiple class inheritancePart 35 Multiple class inheritance using interfaces
阅读全文
摘要:Difference between abstract classes and interfaces
阅读全文
摘要:Part30Interfaces in c#We create interfaces using interface keyword. just like classes interfaces also contains properties, methods, delegates or event...
阅读全文
摘要:Part 53 Reflection in C#Part 54 Reflection Examplehere is the codeprivate void btnDiscover_Click(object sender, EventArgs e){ lbMethods.Items.Clear...
阅读全文
摘要: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...
阅读全文
摘要:Difference between Convert ToString and ToString,String and StringBuilder
阅读全文
摘要:Part 57 Why should you override ToString Methodsometimes you can override ToString method like that:namepace Examplepublic class MainClass{ Customer ...
阅读全文
摘要:Performance of a multithreaded program
阅读全文
摘要:talking about thread deadlock
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:thread join,thread isalive function
阅读全文
摘要:Part 89 ParameterizedThreadStart delegateUse ParameterizedThreadStart delegate to pass data to the thread functionclass Program { static voi...
阅读全文
摘要: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...
阅读全文
摘要:class Program { static void Main(string[] args) { List persons = new List() { new Person{ID=101,Name="lin1...
阅读全文
摘要:Important concepts related to functions in sql server
阅读全文
摘要:Part 29 Mathematical functions in sql server
阅读全文
摘要:Part 28 Cast and Convert functions in SQL Server
阅读全文
摘要:A SQL Server database can be created, altered and dropped1. Graphically using SQL Server Management Studio (SSMS) or2. Using a Query To create the dat
阅读全文
摘要:note that,SSMS is a client tool and not the server by itself,it is a developer machines connects to SQL Server.
阅读全文
摘要:Identity Column in SQL Server If a column is marked as an identity column, then the values for this column are automatically generated, when you inser
阅读全文
摘要:What is Foreign key and how to create a Foreign key constraint? Note:Foreign Keys are used to enforce(强制) database integrity(完整) . In layman's terms(一
阅读全文
摘要:Joins in sql serverAdvanced or intelligent joins in sql serverSelf join in sql serverDifferent ways to replace NULL in sql server
阅读全文
摘要:Select specific or all columnsselect * from 表名select * from Studentselect 列名,列名... from 表名select name,age,email from StudentDistinct rowsselect distin...
阅读全文
摘要:Union and union all in sql server
阅读全文
摘要:
阅读全文
摘要:Step1: Install entity framework using nuget package manager.Step2: Add a class file to the Models folder.(class name must equal connection string name...
阅读全文
摘要:ViewBag and ViewData is a mechanism(机制) to pass data from controller to view.We use '@' symbol(符号) to switch between html and C# code.Both ViewData an...
阅读全文
摘要:Part 2 How are the URL's mapped to Controller Action Methods?The answer is ASP.NET Routing.Notice that in Global.asax we have RegisterRoutes().and pre...
阅读全文
摘要:Part 1 some difference from asp.net to asp.net mvc4In MVC URL's are mapped to controller Action MethodsIn a WebForms URL's are mapped to Physical File...
阅读全文

浙公网安备 33010602011771号