What is Partial class? What purpose we use it?
Answers were Sorted based on User's Feedback
Answer / nsy
A partial class nothing but a class with the keyword
partial. This class can split across multiple cs files. The
purpose of this is managing code in our project.
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / raja
Visual Studio uses partial classes to separate auto-generated code from user-generated code. For example, in the Windows Form application
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / anil
Partial is keyword,a class can span multiple source file .
same name diffrent member and functionality.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jajnaseni majhi
Partial is keyword which is used to create partial
classes.When a class is large enough to maintain,by
creating partial classes developer can span the same class
to multiple files.Which easy to maintain.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / balakrishna
partial is keyword
when ever class will create at difference location with same
name at the time before class partial key word is used.
this can help parallel creation .
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rajendra
http://msdn.microsoft.com/en-us/library/wa80x488.aspx
Is This Answer Correct ? | 0 Yes | 0 No |
What is a reference type c#?
What are the desktop applications?
What is the role of the datareader class in ado.net connections?
I need code to connect ohter systems in the LAN and i want to display my website image over there and i want explain as a admin through phone. So i need code to access other system using C-Sharp. Any one please help me.Please give me the code. Advace thanks.
what is a structure in c#
Define c# i/o classes? List the commonly used classes?
How do I convert a string to an int in c#?
What are the different types of delegates?
Is struct object oriented?
Is array reference type in c#?
Write down the c# syntax to catch an exception
How are Windows programs different from normal C-programs?