C# Interview Questions and Answers
C# : Which class can be used to perform data type conversion between .NET data types and XML types?
C# : Explain the different types of comments in C#?

Explain the different types of comments in C#?

Following three types of comments can be used in C#: 1) Single-line Comments: Example: //..commen....
Category: C# Date: 10/28/2009 4:53:21 AM
C# : What is the syntax to inherit from a class in C#?

What is the syntax to inherit from a class in C#?

After the name of derived class, place a colon and then the name of the base class. For example: ....
Category: C# Date: 10/15/2009 4:39:26 AM
C# : How can we sort the elements of the array in descending order?

How can we sort the elements of the array in descending order?

By calling Sort() and then Reverse() methods of the Array object.
Category: C# Date: 10/15/2009 4:36:14 AM
C# : What is the difference between the System.Array.CopyTo() and System.Array.Clone()?

What is the difference between the System.Array.CopyTo() and System.Array.Clone()?

CopyTo() method copies all the elements of the current one-dimensional Array to the specified one-di....
Category: C# Date: 10/15/2009 4:33:18 AM
C# : Is it possible to store multiple data types in System.Array object?
C# : What is the difference between String and StringBuilder type?

What is the difference between String and StringBuilder type?

String type is immutable while a StringBuilder type is mutable. StringBuilder objects performs bette....
Category: C# Date: 10/15/2009 4:12:05 AM
C# : What is the difference between a Struct and a Class?

What is the difference between a Struct and a Class?

Following are the two major differences between a Struct and a Class: 1) Struct is a value type whi....
Category: C# Date: 10/13/2009 11:20:40 PM
C# : Explain using statement?

Explain using statement?

We create an object intance in a "using" statement to ensure that "Dispose" is c....
Category: C# Date: 9/30/2009 7:12:51 AM
C# : The C# keyword "int" maps to which .Net type?

The C# keyword "int" maps to which .Net type?

System.Int32
Category: C# Date: 9/4/2009 9:04:37 PM
C# : Is it possible to have a static indexer in C#?

Is it possible to have a static indexer in C#?

Static indexers are not allowed in C#
Category: C# Date: 8/28/2009 4:55:42 PM
1 2 
Recent Answers
What is difference between string and stringbuilder?
Vinit Kumar answered: string -the object of this class are immutable i.e. we can not change any character that is c....
How Just in Time Compiler Works?
Johndecruse answered: When you execute the program, i.e. the intermediate code, the Just-In-Time (JIT) compiler com....
If I have an external aspx page? How do u integrate with existing sharepoint site? I want to publish it over t....
Satyen Kasturi answered: what you want is to use Application pages. These are located in Layouts directory. Within ....
where are the different file to content query webpart? To design a page?
uday answered: content query webpart displays a dynamic view of sites ,pages
have worked in BDC?
Mike answered: BDC stands for Business Data Catalog. It is a new feature introduced in Microsoft Office SharePoint ....
12345678910...