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 static abstract class

Answer Posted / radheshayam

An abstract class cannot be sealed or static.Exe
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication31
{
public abstract class hi
{
public abstract void disl();
}
class Program : hi
{

public override void disl()
{
string name = "radhey" + "Shyam";
Console.WriteLine(name);
Console.ReadLine();
}

static void Main(string[] args)
{
Program obj = new Program();
obj.disl();
}
}
}

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between early binding and late binding in c#?

954


What is private readonly in c#?

947


What is a variable in c#?

901


what is generics? can u explain 5 to 6 examples on generics that covers class,method,structure,list,delegates?

1941


What is Asynchronous call and how it can be implemented using delegates?

1024


How to block a class from being inherited further?

907


What is the boxing and unboxing in c#?

893


What are the new features in c# 2.0?

979


Can a class be protected in c#?

908


What is Satellite Assemblies ?

985


When would you use generics in your code c#?

907


What is the usage of transponders?

958


What is float in unity?

905


what are implementation inheritance and interface inheritance?

932


Does c# have a 'throws' clause?

1015