Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what are abstract classes? what is overriding?

Answer Posted / maloy.adhikari

abstract Class: I find a Proper ans there.

So Posting For Overriding.
Method Overriding:

Method overriding occurs when child class declares a method
that has the same type arguments as a method declared by one
of its superclass.
Method overriding forms Run-time polymorphism.

Eg1:
Class Maloy
{
virtual void hello()
{ Console.WriteLine(“Hello from Maloy”); }
}
Class Adhikari: Maloy
{
override void hello()
{ Console.WriteLine(“Hello from Adhikari”); }
}
static void main()
{
parent objmaloy = new Adhikari();
objmaloy .hello();
}
//Output
Hello from Adhikari.
..................
Hope You Understand This.

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is complex type?

1066


The order of the filters that get executed, if the multiple filters are implemented?

1084


Can you explain the page life cycle of mvc?

1062


How does work clr?

965


What are Scaffold templates in ASP.Net MVC?

1122


What are child actions in ASP.Net MVC?

1113


I want ask from plz smaple example code for Biztalkk server

2269


what is msl?

1097


what is entityclient?

1181


What is RouteConfig.cs in ASP.Net MVC 4?

1121


What are the advantages of mvc over asp.net?

1075


If I have multiple filters implemented, what is the order in which these filters get executed?

978


What is edm in entity framework?

1050


What is managed extensibility framework?

1053


What are the 3 main components of an asp.net mvc application?

1087