Performs an implicit conversion from nullable
int to
JsonValue.
Namespace:
KGySoft.Json
Assembly:
KGySoft.Json (in KGySoft.Json.dll) Version: 2.0.1
public static implicit operator JsonValue (
int? value
)
Public Shared Widening Operator CType (
value As Integer?
) As JsonValue
static implicit operator JsonValue (
Nullable<int> value
)
F# does not support the declaration of new casting operators.
Parameters
- value
- Type: SystemNullableInt32
The value to be converted to a JsonValue.
Return Value
Type:
JsonValue
A
JsonValue instance that represents the original value.
Reference