What is the base class from which all value types are derived?


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

Post New Answer

More C Sharp Interview Questions

How cache is implemented in web application for DB queries?

2 Answers   TCS,


What is an object and a class?

0 Answers  


Can you instantiate an abstract class c#?

0 Answers  


What is the difference between public, static, and void?

0 Answers  


How do you restrict the type which can be used in custom generic?

1 Answers   IBM,






What do you mean by string objects are immutable?

0 Answers  


What is the console on a mac?

0 Answers  


Is c# and c sharp same?

0 Answers  


What?s a multicast delegate?

5 Answers   Visual Soft,


What is difference between write and writeline in c#?

0 Answers  


What is data binding with example?

0 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,


Categories