Can namespace contain the private class?


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

Post New Answer

More C Sharp Interview Questions

What do constructors do in c#?

0 Answers  


What is the difference between throw and throw ex?

0 Answers  


What method is used to sort the elements of the array in descending order?

0 Answers   Siebel,


How string definitions will prevent escaping on backslashes in C#?

0 Answers   Siebel,


What is callback 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 asp net in c#?

0 Answers  


Explain publishers and subscribers in events.

0 Answers  


While debugging a C# application can you change the value of a variable?

0 Answers   Siebel,


Why do we need interfaces in c#?

0 Answers  


Is class reference type c#?

0 Answers  


What is the lock statement in c#?

0 Answers  


Categories