What is dictionary collection in c#?


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

Post New Answer

More C Sharp Interview Questions

What does f mean in c#?

0 Answers  


What is an example of a delegate?

0 Answers  


Is enum a value type c#?

0 Answers  


Why is it efficient to use System.string under System.Text.StringBuilder ?

0 Answers   Siebel,


Is c# good for games?

0 Answers  






What is the difference between static and private constructor?

0 Answers  


Why do we need interfaces in c#?

0 Answers  


what is namespace?

6 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 role of the datareader class in ado.net connections?

0 Answers  


Why do we need collections in c#?

0 Answers  


Is .net and c# the same?

0 Answers  


Categories