Name some properties of thread class.
What is namespace c#?
Explain copy constructor?
What is the difference between CreateObject() and GetObject()?
What is the difference between func and action delegate?
Why static variables are used?
write a c# program add two matrix with input number ?
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 does dbml stand for?
What operators can be used to cast from one reference type to another without the risk of throwing an exception?
Which are the loop types available in c#?
What are the advantages of using assemble language programming?
Is it possible to have a static indexer in c#? Allowed in c#.
What is string interpolation in c#?
Explain the mechanism of VB.NET/C# achieve polymorphism?