Can we have a non static member function in a base class to
be override in derived with static modifier?
Answer Posted / guest
No.
A Static member can not be declared override, virtual,
abstract.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is null in database?
Is it true that all c# types derive from a common base class?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
What operator means?
What is the difference between field and variable in c#?
How assembly versioning in .NET prevent DLL Hell problem?
Can an exception be thrown from a catch block?
What is an object and a class?
Differentiate between dataset and datareader?
How to find out that the code is written as managed or un-managed code?
Explain the difference between the system.array.copyto() and system.array.clone()?
What is the use of properties window?
Why use “using” in c#?
What is the use of console readkey in c#?
What are the 3 types of comments in c#?