Answers for "how to set null to a long variable in C#"

C#
0

set int to null c#

// Nullable types add null as a valid value in addition to the type range
Nullable<int> i = null;

// Can also be written as:
int? i = null;
Posted by: Guest on May-11-2020

Code answers related to "how to set null to a long variable in C#"

C# Answers by Framework

Browse Popular Code Answers by Language