What is the use of static abstract class
Answers were Sorted based on User's Feedback
Answer / srini
We cannot give static key word for abstract class
Is This Answer Correct ? | 21 Yes | 5 No |
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 |
Answer / kishore.a
We cannot mention an abstratct class as static..
Is This Answer Correct ? | 3 Yes | 3 No |
What?s an abstract clas?
Why delegates are required?
What is a dynamic assembly?
Is list passed by reference c#?
What is a protected class in c#?
example of uniary operators and binary operators
What does the keyword virtual mean in the method definition?
what is Diff Gram
Is c# pass by value?
explain DIFFERENCE BETWEEN CLASS AND MODULE?
What is yield break in c#?
Explain about Threading Types.