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

What is the difference between method and constructor in c#?

0 Answers  


Why delegates are safe in c#?

0 Answers  


Is equal in c#?

0 Answers  


How to make a class not inheritable other than sealed?

3 Answers  


What is _layout cshtml?

0 Answers  






Explain how do you debug an asp.net web application?

0 Answers  


How to implement an object pool in c#.net.

0 Answers  


how to retrieve binary data from database (using c#.net and sql server/windows application)

2 Answers   Soltius,


Is c# code is managed or unmanaged code?

0 Answers  


What are data types with examples?

0 Answers  


What are the value types in c#?

0 Answers  


Can fields inside a class be virtual?

0 Answers  


Categories