what are partial classes and their use?
Answer / alb.shah
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 ? | 9 Yes | 0 No |
what do you mean software devlopment ?
Which object encapsulates state or data of a user?
What types of data validation events are commonly seen in the client-side form validation?
Describe Segmentation With Paging?
what is the difference between response.write() and response.output.write()?
Can you change a master page dynamically at runtime? How?
How many Language support in ASP.NET?
What tags do you need to add within the asp:datagrid tags to bind columns manually? Give an example.
What is boxing?
8 Answers IBM, Misys, Siebel Systems,
What is a nested masterpage in asp.net 2.0? Can there be a master page inside a masterpage?
Which method is used to perform all validation at the page level?
0 Answers Sans Pareil IT Services,
Usage of web.config?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)