Tell me Asp.net Method Overriding.
Answers were Sorted based on User's Feedback
Answer / snehalata
Method overriding means having a different implementation
of the same method in the inherited class. These two
methods would have the same signature, but different
implementation. One of these would exist in the base class
and another in the derived class. These cannot exist in the
same class.
Overriding methods
Overriding method definitions
In a derived class, if you include a method definition that
has the same name and exactly the same number and types of
parameters as a method already defined in the base class,
this new definition replaces the old definition of the
method.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / kkk
same method and same args in base and derived classes simple.
class a
{
public virtual void m1(int a,int b)
{}
}
class b:a
{
public override void m1(int a,int b){}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sarang
Overriding method must not throw a new or broader exception
than the method in base class.
Return type must not be more restrictitive than method in
base class on which overriding is done.
| Is This Answer Correct ? | 0 Yes | 1 No |
Derive WSDL?
Types of objects in ASP ?
5. What three Specific Job Positions do you target from Swatz Oils GROUP U.K?
What are the security types in ASP/ASP.NET? Different Authentication modes?
If cookies is disabled in client browser will session work ?
What is the main difference between grid layout and flow layout?
when we write the html code with runat = server it works like a server control than why we use the server control?
Whats an assembly?
What is WebService ?
8 Answers Tanla Solutions, Yahoo,
How to write test case (Unit test plan)
difference between writing connection string in web.config through connection string and appsettings
Details on web.config and global.asax - just explain what are the sections will be there.
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)