Can you instantiate an abstract class c#?
No Answer is Posted For this Question
Be the First to Post Answer
f i give input like 1,1,4,5,6,1,2,5,4,1,2, then output should be like : 1-4, 2-2, 4-2, 5-1, 6-1 which means 1 occurs 4 times, 2 occurs 2 times like so.
What is the functionality of break and continue in Visual Studio?
What do you mean by hashtable c#?
What is cookies c#?
C# provides a default constructor for me. I write a constructor that takes a string as a parameter, but want to keep the no parameter one. How many constructors should I write?
class Program { void add() { int x=10, y=20; fun(); Console.WriteLine("{0}", sum); } void fun() { int sum; sum = x + y; } static void Main(string[] args) { Program f =new Program(); f.add(); } } Debug above program.....
Why we use get and set method in c#?
When you inherit a protected class-level variable, who is it available to?
Why are there five tracing levels in System.Diagnostics.TraceSwitcher?
For methods inside the interface why can’t you specify the accessibility modifier?
What is the use of dll file in c#?
What C# keyword class access modifier specifies that the class is concrete and CANNOT be derived from?