JsonValue   Conversion (NullableInt64 to JsonValue)

Note: This API is now obsolete.
Performs an implicit conversion from nullable long to JsonValue. This operator exists only to produce a warning because otherwise the implicit conversion from double would also match Int64 values.

Definition

Namespace: KGySoft.Json
Assembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
C#
public static implicit operator JsonValue (
	long? value
)

Parameters

value  NullableInt64
The value to be converted to a JsonValue.

Return Value

JsonValue
A JsonValue instance that represents the original value.

Remarks

  Note

Obsolete Note: Using Int64 as a JSON Number may cause loss of precision. It is recommended to use the ToJson extension method instead. You can pass to the asString parameter to express your intention and to avoid this warning.

See Also