Correct Answer: you should declare it as virtual in the base class.
Explanation:
Note: This Question is unanswered, help us to find answer for this one
C# Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More C# MCQ Questions
What does if((number <= 10) && (number >= 0)) evaluate to if number is -6?
Which keyword would be used in a class declaration to stop the class from being inherited?
Which of the following is the correct way to write C# comments
What is the keyword to create a condition in a switch statement that handles unspecified cases?
Given the following statement: public enum Days { Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday }. What is the value of Monday?
How would you write code for an integer property called Age with a getter and setter?
How do you make a method in an abstract class overridable?
What is the correct formatting for single line and multiline comments?
Lambda expressions are often used in tandem with which of the following?
What will be returned when this method is executed? public void userInput(string charParamters) { }