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 property c#?

1000


How do I create a .exe file?

1055


Explain what is copy constructor?

1070


What is a thread c#?

964


What is Wrapper class in dot net?

1116


Which is more efficient for loop or while loop?

932


What does int parse do in c#?

986


What is a base class in C#?

1012


What is the advantage of generics in c#?

960


What is a jagged array?

965


What is the differences between datagrid, datalist and repeater in .net?

1066


Which sorting algorithm is best?

1041


In c#, what will happen if you do not explicitly provide a constructor for a class?

1015


Is list immutable in c#?

936


how to insert the data from the grid view to database table though button click.pls send the answer to mail id suri1319@gmail.com

1957