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 view model in c#?
What is Assembly. and Describe type of assembly. why most developer happy with private assembly.
What is system console writeline in c#?
Is static thread safe?
What is the process of delegation?
Are private members inherited in c#?
What is the difference between firstordefault and singleordefault?
Is datetime immutable c#?
Why dataset is used in c#?
What is windows application in c#?
What is type safe in c#?
Why do we need static class in c#?
What is a static in c#?
How do I open the console?
Can abstract class be sealed in c#?