JsonValue   Conversion (UInt64 to JsonValue)

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

Definition

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

Parameters

value  UInt64
The value to be converted to a JsonValue.

Return Value

JsonValue
A JsonValue instance that represents the original value.

Remarks

  Note

Obsolete Note: Using UInt64 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