[This is preliminary documentation and is subject to change.]
Namespace: NFXAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static void IsNotNull<T>(
Nullable<T> got,
string from = null
)
where T : struct, new()
public static void IsNotNull<T>(
Nullable<T> got,
string from = null
)
where T : struct, new()
Public Shared Sub IsNotNull(Of T As {Structure, New}) (
got As Nullable(Of T),
Optional from As String = Nothing
)
Public Shared Sub IsNotNull(Of T As {Structure, New}) (
got As Nullable(Of T),
Optional from As String = Nothing
)
public:
generic<typename T>
where T : value class, gcnew()
static void IsNotNull(
Nullable<T> got,
String^ from = nullptr
)
public:
generic<typename T>
where T : value class, gcnew()
static void IsNotNull(
Nullable<T> got,
String^ from = nullptr
)
static member IsNotNull :
got : Nullable<'T> *
?from : string
(* Defaults:
let _from = defaultArg from null
*)
-> unit when 'T : struct, new()
static member IsNotNull :
got : Nullable<'T> *
?from : string
(* Defaults:
let _from = defaultArg from null
*)
-> unit when 'T : struct, new()
- T