can we assign null value to value type in c#?
Answer Posted / aditya
Nullable type is introduced in .NET 2.0. Before 2.0 it was
not possible to assign null to value types.
This was possible with the introduction of Generics in 2.0
and the it would be something like this...
System.Nullable<int> x = new System.Nullable<int>;
or
int? salary = null (new type modifier in 2.0)
| Is This Answer Correct ? | 30 Yes | 7 No |
Post New Answer View All Answers
Explain About delegates
What is a long in c#?
Is var a data type?
Can a struct be null?
How can you reference current thread of the method ?
Write a program to find the angle between the hours and minutes in a clock
What is type keyword in c#?
Can we override interface method?
Can I define a type that is an alias of another type (like typedef in c++)?
Name the method of servicebase class?
What are examples of desktop applications?
What is the difference between gettype and typeof in c#?
What is the difference between asp net and c#?
Is c# good for web development?
Explain the Different types of configuration files in .net?