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 are Action Filters in ASP.NET MVC and its use?

1021


What is the role of the jit compiler in .net framework?

1059


Explain the advantages of asp.net mvc over asp.net?

1039


What filters are executed in the end?

977


What is mapping in entity framework? : Entity framework

924


how can you tell ef to have a different table or column name than that defined for the class?

998


What is display mode in mvc?

954


what is way of loading data in ef (entity framework)?

1048


How route table has been created in ASP.NET ASP.Net MVC?

941


Is it possible to share a view across multiple controllers?

892


What is meant by domain model?

971


What is the .net framework and how does it work?

917


How does the .net framework 3.0 relate to the .net framework 2.0?

997


Can any particular component of .net framework 3.0 be removed?

919


What is tempdata?

994