What is the value which is accepted by all data types ?
No Answer is Posted For this Question
Be the First to Post Answer
Can you declare a class or a struct as constant?
When do you absolutely have to declare a class as abstract (as opposed to free-willed educated choice or decision based on UML diagram)?
int i = 1; int j = 1; System.Console.WriteLine(i == j); System.Console.WriteLine(i.ToString() == j.ToString()); System.Console.WriteLine((object)i == (object)j); Give the sample code above, what is the output to the console?
How does array sort work?
What does private void mean in c#?
Can we create extension method for interface?
Why is it important to override gethashcode when equals method is overridden?
What is difference between class and abstract class in c#?
class Employee { stat9c Method1() static Method2(ref a) stat9c Method3(out x) } class Employee { stat9c Method1() static Method2(ref a) stat9c Method3(out x) } what will happen & why?
What is command object in c#?
What?s a delegate?
Explain the use of virtual, sealed, override, and abstract method?