Microsoft Technologies Interview Questions and Answers
.Net Framework : Describe use of named pipes:

Describe use of named pipes:

Named pipes provide interprocess communication between a pipe server and one or more pipe clients. N....
Category: .Net Framework Date: 10/15/2010 10:27:48 AM
.Net Framework : How do format double with only two decimal places after decimal separator?

How do format double with only two decimal places after decimal separator?

field.ToString(“F2”)
Category: .Net Framework Date: 10/15/2010 10:27:48 AM
.Net Framework : Can event be marked as abstract?

Can event be marked as abstract?

Yes
Category: .Net Framework Date: 10/15/2010 8:52:48 AM
.Net Framework : What is routed event?

What is routed event?

Routed event is a type of event that can invoke handlers on multiple listeners in an element tree. R....
Category: .Net Framework Date: 10/15/2010 8:00:49 AM
.Net Framework : What are generics?

What are generics?

Generics add support for type parameters in .NET Framework.
Category: .Net Framework Date: 10/15/2010 6:05:48 AM
.Net Framework : What is attribute?

What is attribute?

Attributes add metadata to the program. You can query them using reflection.
Category: .Net Framework Date: 10/15/2010 5:23:49 AM
.Net Framework : What namespace provides access to GDI+?

What namespace provides access to GDI+?

System.Drawing
Category: .Net Framework Date: 10/15/2010 3:28:48 AM
.Net Framework : What is CultureInfo class?

What is CultureInfo class?

CultureInfo class provides various information about a specific culture like writing system, calenda....
Category: .Net Framework Date: 10/15/2010 2:36:49 AM
.Net Framework : What is exception?

What is exception?

exception represents errors that occurred during application execution
Category: .Net Framework Date: 10/15/2010 12:51:48 AM
.Net Framework : What is sealed class?

What is sealed class?

Another class cannot e derived from this class.
Category: .Net Framework Date: 10/15/2010 12:41:48 AM
.Net Framework : What is nested type?

What is nested type?

Nested type is type located in another class.
Category: .Net Framework Date: 10/14/2010 11:59:49 PM
.Net Framework : What is dependency property?

What is dependency property?

Dependency property is new type of property. The local property value is not stored in an instance v....
Category: .Net Framework Date: 10/14/2010 11:49:49 PM
.Net Framework : What is Silverlight?

What is Silverlight?

Silverlight is development platform for creating web, desktop and mobile applications.
Category: .Net Framework Date: 10/14/2010 10:14:49 PM
.Net Framework : What bit collection are defined in .NET framework?

What bit collection are defined in .NET framework?

BitArray and BitVector32
Category: .Net Framework Date: 10/14/2010 10:04:48 PM
.Net Framework : What is ASP.NET MVC?

What is ASP.NET MVC?

ASP.NET MVC is implementation of Model-View-Controller design pattern for ASP.NET.
Category: .Net Framework Date: 10/14/2010 9:12:49 PM
2 3 4 5 6 7 8 9 10 >>
Recent Answers
How do you declare destructor in c#?
kumar answered: by implementing finalize and dispose method