What is the use of static abstract class

Answers were Sorted based on User's Feedback



What is the use of static abstract class..

Answer / srini

We cannot give static key word for abstract class

Is This Answer Correct ?    21 Yes 5 No

What is the use of static abstract class..

Answer / 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

What is the use of static abstract class..

Answer / ananth

Can you pls give me an example

Is This Answer Correct ?    3 Yes 1 No

What is the use of static abstract class..

Answer / kishore.a

We cannot mention an abstratct class as static..

Is This Answer Correct ?    3 Yes 3 No

What is the use of static abstract class..

Answer / irfan khan

we cant give static key word for a class

Is This Answer Correct ?    10 Yes 24 No

Post New Answer

More C Sharp Interview Questions

Where test director stores its data ? Database ,Local file etc...? I need to read this data from Visual Studio 2005 c# client. Regards

0 Answers  


What is semaphore in c#?

0 Answers  


What is the ouput of the following program?

0 Answers  


What operator means?

0 Answers  


What is the difference between “out” and “ref” parameters in c#?

0 Answers  






What is a multicast c# delegate?

0 Answers  


What is meant by desktop application?

0 Answers  


What is a generic method?

0 Answers  


What is a system lock?

0 Answers   KEN Group, Wipro,


What is null character in string?

0 Answers  


Where is the output of TextWriterTraceListener redirected?

1 Answers  


What is the difference between arraylist and list in c#?

0 Answers  


Categories