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 are partial classes?
The partial keyword allows the class, struct, or interface to span across multiple files. Typically in C# a class will reside entirely in a single file. However in situations where multiple developers need acees to the same class, or more likely in the situation where a code generator of some type generating part of the class, then having a class in multiple files can be beneficial.

The way the partial keyword is used is to simply place partial before the calss, struct, or interface.

What is Application domine in C#.Net?
How is method overriding different from method overloading?
What is the syntax to inherit from a class in C#?
How do I create an instance of a type if I only know its name?
In C#, for String class Equals means value equality or reference equality?
What is the "this" keyword in C# ?
OR
What is the "this" reference in C# ?
What is the difference between const and static readonly?
What is the "is" operator?
What is the size (in bytes) of C#.Net object?
How do I do a case-insensitive string comparison?