Method HasValue
HasValue<T>(T?, string)
Ensures that the value of a parameter is not null.
public static T? HasValue<T>(T? value, string paramName) where T : struct
Parameters
value
T?The value of the parameter.
paramName
stringThe name of the parameter.
Returns
- T?
The value of the parameter.
Type Parameters
T
Type type of the value.