C# Interview Questions
A list of all frequently asked C# interview questions with answers
C# 4.0 New Features
›
What are the new features introduced in c# 4.0? This is very commonly asked c# interview question . This question is basically asked to ...
22 comments:
What's the difference between IEnumerable<T> and List<T> ?
›
1. IEnumerable is an interface, where as List is one specific implementation of IEnumerable. List is a class. 2. FOR-EACH loop is the o...
20 comments:
Explicit Interface Implementation
›
This C# Interview Question was asked my a member of this blog. Please refer to the example code below. How to implement the void Method() ...
8 comments:
Difference between EXE and DLL
›
1. .EXE is an executable file and can run by itself as an application, where as .DLL is usullay consumed by a .EXE or by another .DLL and ...
12 comments:
Unit Testing a private static method in C# .NET
›
In the previous article we have seen how to unit test private instance methods . In this article we will see unit testing static private m...
7 comments:
›
Home
View web version