Home » C# Programming » Inheritance

Which statement will you add in the function fun() of class B, if it is to produce the output "Welcome to CuriousTab.com!"? namespace CuriousTabConsoleApplication { class A { public void fun() { Console.Write("Welcome"); } } class B: A { public void fun() { // [*** Add statement here ***] Console.WriteLine(" to CuriousTab.com!"); } } class MyProgram { static void Main (string[ ] args) { B b = new B(); b.fun(); } } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!