Post New Answer View All Answers
What is the difference between ienumerable and icollection?
What's the difference between class and object?
What can be done with c#?
What are properties in c#. Explain with an example?
Why do we need delegates in c#?
Explain what are three test cases you should go through in unit testing?
Can enum be null c#?
What is difference between ienumerable and list in c#?
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; } }
Explain the mechanism of VB.NET/C# achieve polymorphism?
What is the purpose of reserved word using in c#?
What is the difference between ref and out parameters in c#?
What is verbatim literal in c#?
What is asp net c#?
How do you read an Excel sheet in C#?