How is the syntax written to inherit from a class in C#?Give an example ?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

Is there a way to force garbage collection?

0 Answers  


What is xaml file in c#?

0 Answers  


How many constructors can a class have in c#?

0 Answers  


What is ilist c#?

0 Answers  


syntax for writing private method in a interface

7 Answers   ABMPL, Wipro,


Is equal in c#?

0 Answers  


Is IIS is required for installing the deployment of windows C#.netapplication and to run.

2 Answers  


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; } }

1 Answers   iGate,


What is a partial class. Give an example?

0 Answers  


Define c# i/o classes? List the commonly used classes?

0 Answers  


How does inheritance work in c#?

0 Answers  


What do constructors do in c#?

0 Answers  


Categories