Answer Posted / master
which is nullable... is the nullable type....
| Is This Answer Correct ? | 2 Yes | 21 No |
Post New Answer View All Answers
Can you prevent a class from being instantiated?
What is the base class in .net from which all the classes are derived from?
Explain About remoting and web services. Difference between them
What Is A Multicast Delegate?
List out two different types of errors in c#?
What is signature c#?
Explain the difference between and xml documentation tag?
What is array and arraylist?
Does c# replace 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; } }
What is global asax in c#?
What is uint64_t?
Can we have multiple threads in one app domain?
How do you use nullable?
Wcf and what is difference between wcf and web services?