What is the data encapsulation?
What is nameof c#?
What is token in c#?
How does one compare strings in c#?
What is byte c#?
Is dll a library?
what are the different ways a method can be overloaded?
Is namespace a class?
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 are the types of comments in c#?
What is namespace c#?
Distinguish between finally and finalize blocks?
Distinguish between the Debug class and Trace class with its functionality?
Can interface inherit class in c#?
what is IDisposal interface,IComparable,IEquatable,IFormatable