can we assign null value to value type in c#?
Answer Posted / shihafath wazeer
correct declaration for a nullable integer is as follows
Nullable<int> i = null;
or
int? j = null;
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is the max value of int32 in c#?
What is the use of delegates in c#?
What does string intern do?
What is use of singleton class in c#?
Is typeof c#?
Is a decimal an integer?
Is c# an open source language?
Explain how do you directly call a native function exported from a dll?
Can you specify an access modifier for an enumeration?
What does type safety mean?
What is the interface in c#?
3. Use layered architecture for coding. s.no name description 1 abc xxxxxxxxx 2 abc xxxxxxxxx 3 4 5 6 7 8 Select all Clear all Add Delete Name Description Save close
What is boxing & unboxing?
What are strong name assemblies?
How Global.asax is used ?