What I can do with c#?


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

Post New Answer

More C Sharp Interview Questions

How many aware interfaces are there?

0 Answers  


Explain polymorphism in c# with a simple example?

0 Answers  


Can we override main method in c#?

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 the difference between func and action delegate?

0 Answers  






Does c# support multiple inheritance (mi)?

0 Answers  


Is c# scripting language?

0 Answers  


how to print invert pyramid in c#

0 Answers   ForSight,


the selected inf of other combobox?How do you achieve it?

1 Answers   CTS, Microsoft,


Why do we use overloading in c#?

0 Answers  


What are the differences between static, public and void in c#?

0 Answers  


How do I get deterministic finalization in c#?

0 Answers  


Categories