Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 C-Sharp (C#) Interview Questions and Answers
What is Application domine in C#.Net?
Application doamin is a logical partition within which the process is isolated and hosts .Net assemblies inside it.

The single process can have multiple application domains, and in turn each application domain has multiple threads inside it, but the thread not confined to the application domain as it is free to cross the app. domain boundries to another domain provided that the thread execution can be done only in a specific domain at a time.

The application domain is managed and created by basically CLR.

By default the member of the interface are public and abstract. true or false?
Where is the output of TextWriterTraceListener redirected?
Why doesn't C# support static method variables?
OR
In C++, it's possible to write a static method variable, and have a variable that can only be accessed from inside the method. C# doesn't provide this feature. Why?
What is the difference between an .EXE and a .DLL?
What is the static class?
What are Enumerations in C#?
What is the difference between the Debug class and Trace class?
What does the keyword “virtual” declare for a method or property?
How do I launch Internet Explorer in C#?
What are the characteristics of C#?