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.

Does C# support multiple inheritance?
Does C# do array bounds checking?
How do you convert a value-type to a reference-type?
What are Identifiers?
What are Constructors?
What is inheritance?
What is maximum dimension technically posible in C#?
What are Constants in C#?
Can I use DirectX in C#?
What is the difference between the System.Array.CopyTo() and System.Array.Clone()?