
.NET interview questions: - Different Ways to create a delegate?
- By Shiv Prasad Koirala
- Sep 20th, 2011
- 21833
- 0
This is the .NET interview questions which you come across many a times. So following is the answer to it with explanation.

.NET interview questions: - Describe steps of working of CAS ?
- By Shiv Prasad Koirala
- Sep 19th, 2011
- 3060
- 0
First Evidence is gathered about the assembly. In other words from where did this assembly come? , who is the publisher etc.

.NET interview questions: -Describe operator overloading?
- By Shiv Prasad Koirala
- Sep 17th, 2011
- 30411
- 0
Operator overloading is a concept of polymorphism where you can redefine operators like +, - , * etc with additional functionalities.

.NET interview questions: - Can we implement dynamic polymorphism?
- By Shiv Prasad Koirala
- Sep 16th, 2011
- 22253
- 0
This is the .NET interview questions which you come across many a times. So following is the answer to it with explanation.

.NET interview questions: - Uses of checked and unchecked keyword in C#?
- By Shiv Prasad Koirala
- Sep 13th, 2011
- 8246
- 0
The checked keyword is used to explicitly enable overflow checking for integral-type arithmetic operations and conversions.

.NET interview questions: - Define hashtable collections?
- By Shiv Prasad Koirala
- Sep 12th, 2011
- 4898
- 0
In arraylist or array if we have to access any data we need to use the internal index id generated by the array list collection. For instance the below code snippet shows how the internal id is used to fetch data from array list.

C# and .NET interview questions: - How does Constant differ from ReadOnly in C#?
- By Shiv Prasad Koirala
- Sep 10th, 2011
- 9940
- 0
The const keyword is used to modify a declaration of a field or local variable. It specifies that the value of the field or the local variable cannot be modified.

WCF interview questions: - How does WCF differ from Web services?
- By Shiv Prasad Koirala
- Sep 8th, 2011
- 9989
- 0
WCF services can be hosted in multiple protocols like http, TCP etc. Web services can only be hosted on Http protocol.

.NET interview questions: - Delay signing in .NET?
- By Shiv Prasad Koirala
- Sep 5th, 2011
- 3648
- 0
The whole point about strong names is to ensure that the clients (UI, External components etc) who is consuming the DLL knows that the DLL was published from a valid source

.NET interview questions: -Elaborate differentiation delegate and an event?
- By Shiv Prasad Koirala
- Sep 4th, 2011
- 6677
- 0
This is one of the important and most asked.NET interview questions. Delegate is basically an abstract strong pointer to a function or method while events are higher level of encapsulation over delegates.