Answer Posted / raju
Nullable type is nothing but value type cant store null values
only reference type can store null values.whenever you
assign null values to value type variable from your backend
tables at that time we use nullable.
int? x;
| Is This Answer Correct ? | 26 Yes | 2 No |
Post New Answer View All Answers
In which order the constructor is called for an inherited class?
What is before string in c#?
What is a clr (common language runtime)?
What is multicast delegate in c# ?
Can we have 2 main methods in c#?
What is list collection in c#?
What are the advantages of using c#?
What is escape sequence in c#?
What is regex replace in c#?
Are structs value types c#?
What is type safe in c#?
What does immutable mean in c#?
What does writeline mean?
What is private in c#?
Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?