<PackageReference Include="NETStandard.Library" Version="2.0.3" />

System.Nullable<T>

public struct Nullable<T> where T : struct
namespace System { public struct Nullable<T> where T : struct { public bool HasValue { get; } public T Value { get; } public Nullable(T value); public T GetValueOrDefault(); public T GetValueOrDefault(T defaultValue); public static explicit operator T(T? value); public static implicit operator T?(T value); } }