what are partial classes and their use?
Answer Posted / dasharatham
This is a feature of 2005,when we have large and unwildly
classes instead of writing all the methods in same program
we will divide the class into number of programs with the
same class name,these classes are preceeded with partial
keyword,when we compile all this partial classes only one
dll with the same class name will be created.
class with some 20 methods:
Example.cs
class classA{
m1( );
m2( );
.
.
.
m20( );
}
Apply partial concept:
Example1.cs
partial class classA
{
m1( );
m2( );
.
.
m8( );
}
example2.cs
partial class classA
{
m9( );
m10( );
.
.
m15( );
}
Example3.cs
partial class classA
{
m16( );
.
.
m20( );
}
if we compile Examle1.cs,Example2.cs,Example3.cs it will
create only one dll
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the best Macanism to clear the Cache in asp.net
What a diffgram is, and a good use for one?
What is virtual directory in asp.net?
Explain what the contents of cookie?
How does the service stream content?
What is autopostback true?
How does u get record no from 5 to 15 from a dataset of 100 records?
What is the difference between WindowsDefaultLocation and WindowsDefaultBounds?
hi .net gurus. plz if any one has dumps on 70-631 and 70-541 on windows sharepoint services kindly mail me.
What’s the catch?
What is the web.config file in asp?
What is asp net theme?
How to sign out from forms authentication?
How many languages are supported by .NET at present time?
What are cookies in your browser?