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 Event (winforms) ?
Notification by an application or operating system that some event has occurred. An event is fired—raised—when a predefined condition occurs, e.g., focus change in a GUI, interval timer, mouse click. An event handler is called in response to an event. The C# event model is publish and subscribe: Publishers create and publish events: Subscribers register to receive specifc events: Then, publishers send out their events only to subscribers.
What is the advantage of using System.Text.StringBuilder over System.String?
What is the "Thread.Sleep()" method in threading?

OR

How to pause a thread for a specified time period?
Can you write a class without specifying namespace? Which namespace does it belong to by default?
What is the "this" keyword in C# ?
OR
What is the "this" reference in C# ?
What are JIT compilers? How many are available in CLR?
What is the differences between Value Types and Reference Types:
What is the difference between an .EXE and a .DLL?
Are private class-level variables inherited?
Can you override private virtual methods?
Does C# support multiple inheritance?