Science, asked by Somilguha930, 1 year ago

What are nullable types in C#?

Answers

Answered by AgarwalSahb
0

C# 2.0 introduced nullable types that allow you to assign null to value type variables. You can declare nullable types using Nullable<t> where T is a type. Nullable<int> i = null; A nullable type can represent the correct range of values for its underlying value type, plus an additional null value.

Similar questions