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 ....
How do I connect database and infopath in sharepoint?
jiten_keswani answered: \\.\pipe\mssql$microsoft## ssee\sql\query (for Sharepoint 2007) or \\.\pipe\mssql$sharepoin....
What's new in .Net Framework 3.0?
Daniel answered: Visual Studio 2008 and the .NET Framework 3.5 enable developers to rapidly create connected applic....
What's new in .Net Framework 3.0?
resumedocket answered: WPF provides new features for making more interesting, effective, and dynamic user interface....
What is "out" keyword in C#?
Johndecruse answered: “out Keyword” in C#.out keyword is used for passing a variable for output purpose. It has sam....
What is a SharePoint Site Collection and how can we create it?
resumedocket answered: To create a SharePoint site, you must be a member of a site group that has the Create Subsit....
123456789
.Net Framework Interview Questions and Answers
.Net Framework : What is difference between string and stringbuilder?

What is difference between string and stringbuilder?

String is for simple string operations while StringBuilder is used to perform high manipulation stri....
Category: .Net Framework Date: 7/3/2010 1:55:44 PM
.Net Framework : What is difference between Monitor.Enter and Monitor.TryEnter functions?

What is difference between Monitor.Enter and Monitor.TryEnter functions?

Monitor.Enter waits for the lock until it does not get it, while Monitor.TryEnter will request for l....
Category: .Net Framework Date: 7/3/2010 1:52:22 PM
.Net Framework : What is CLR and what is the task perform by CLR?

What is CLR and what is the task perform by CLR?

CLR stand for Common Language Runtime. It has following tasks: 1. Executing IL 2. Code Verificatio....
Category: .Net Framework Date: 7/3/2010 1:48:33 PM
.Net Framework : Explain Managed and Unmanaged Code in .Net?

Explain Managed and Unmanaged Code in .Net?

Managed code is code that has its execution managed by the .NET Framework Common Language Runtime. T....
Category: .Net Framework Date: 1/8/2010 1:57:09 PM
.Net Framework : What are the various types of applications we can develop using .Net Technology?

What are the various types of applications we can develop using .Net Technology?

1) Console applications 2) Windows GUI applications (Windows Forms) 3) Windows Presentation Founda....
Category: .Net Framework Date: 1/8/2010 1:29:07 PM
.Net Framework : What is an Application Pool?

What is an Application Pool?

Application Pool is a new features introduced in IIS 6.0 which is used to isolate ASP.Net Web appli....
Category: .Net Framework Date: 1/3/2010 11:36:33 AM
.Net Framework : What is Windows Presentation Foundation (WPF)?

What is Windows Presentation Foundation (WPF)?

Windows Presentation Foundation (WPF) is a graphical subsystem for rendering user interfaces in Wind....
Category: .Net Framework Date: 12/4/2009 11:50:11 PM
.Net Framework : What's new in .Net Framework 3.0?

What's new in .Net Framework 3.0?

There are no major architectural changes in .Net Framework 3.0. The version of Common Language Runti....
Category: .Net Framework Date: 12/4/2009 11:32:57 PM
.Net Framework : Explain CLR (Common Language Runtime) and its functionalities?

Explain CLR (Common Language Runtime) and its functionalities?

Common Language Runtime (CLR) is the engine available in .Net Framework to compile and run the progr....
Category: .Net Framework Date: 11/30/2009 3:42:09 PM
.Net Framework : How Just in Time Compiler Works?

How Just in Time Compiler Works?

.Net Framework uses two step compilation process. We write code in C#, VB.Net, or in other supportin....
Category: .Net Framework Date: 11/30/2009 2:53:38 PM
.Net Framework : Describe the difference between a Thread and a Process?

Describe the difference between a Thread and a Process?

A process is a unit of execution which has its own data regarding the source, has its own memory spa....
Category: .Net Framework Date: 10/30/2009 7:29:42 AM
.Net Framework : What namespaces and classes are typically used to develop Windows Services in .Net?

What namespaces and classes are typically used to develop Windows Services in .Net?

Namespace: 1) System.ServiceProcess Classes: 1) ServiceBase 2) ServiceProcessInstaller 3) ServiceIn....
Category: .Net Framework Date: 9/30/2009 7:18:12 AM
.Net Framework : How to register a shared assembly?

How to register a shared assembly?

Following two approaches can be used to register a shared assembly: 1) Open the "C:\WINDOWS\ass....
Category: .Net Framework Date: 9/4/2009 7:14:27 AM
.Net Framework : What is a strong name in .Net?

What is a strong name in .Net?

A strong name includes the name of the assembly, version number, culture identity, and a public key ....
Category: .Net Framework Date: 8/29/2009 7:39:06 AM
.Net Framework : What is a satellite assembly in .Net?

What is a satellite assembly in .Net?

Shared assembly contains resources specific to a given language/culture. Using satellite assemblies,....
Category: .Net Framework Date: 8/29/2009 7:33:53 AM
2 3