What is dictionary collection in c#?
No Answer is Posted For this Question
Be the First to Post Answer
What does f mean in c#?
What is an example of a delegate?
Is enum a value type c#?
Why is it efficient to use System.string under System.Text.StringBuilder ?
Is c# good for games?
What is the difference between static and private constructor?
Why do we need interfaces in c#?
what is namespace?
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; } }
What is the role of the datareader class in ado.net connections?
Why do we need collections in c#?
Is .net and c# the same?