Why is c# a good programming language?


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

Post New Answer

More C Sharp Interview Questions

What are constants in c#?

0 Answers  


Difference between abstract classes and interfaces

0 Answers  


What is private readonly in c#?

0 Answers  


Define Final Class in C#

0 Answers   HCL,


Does the system.exception class have any cool features?

0 Answers  






what is satelite assembly?

5 Answers   ABC,


Why are local variables stored in stack?

0 Answers  


What is the base class for array types?

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,


What is called method in c#?

0 Answers  


What is sqladapter c#?

0 Answers  


What are the differences between events and delegates in c#?

0 Answers  


Categories