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 is the use of final method

Answer Posted / sudhir sheoran

First of all sealed in c# is equivalent to final in java.

Sealed is used to stop further overriding an abstract method.

E.g:

public abstract class A
{
public abstract void print();
}

public class B:A
{
public sealed override void print()
{
Console.WriteLine("First override");
}
}

public class C:B
{
public override void print() //This will give compilation error.
{
Console.WriteLine("Second override");
}
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is viewdata?

1079


Is .net core faster than .net framework?

1133


What is renderbody?

1103


What is the version number for the next version of the .net framework, codenamed �orcas�?

994


Is dapper faster than entity framework?

1028


What is attribute routing in mvc?

1187


Is razor a server side?

1039


Explain the advantages of dependency injection (di) in asp.net mvc?

1104


what is minimum requirement for entity framework applications to run?

1195


When using aspx view engine, to have a consistent look and feel, across all pages of the application, we can make use of asp.net master pages. What is asp.net master pages equivalent, when using razor views?

1049


What is domain class model?

1104


mention what is the difference between ado.net and classic ado?

1162


How can I tell what .net framework is installed?

1029


What are the advantages of razor view engine?

964


i just want to write an exam regarding .net?plz give me information about taking a test?where to pay 4 d exam,exam centre?

2276