-
Notifications
You must be signed in to change notification settings - Fork 88
Open
Description
The parser is not compatible with nullable types (int? for example)
It can be done by adding:
if (Nullable.GetUnderlyingType(type) != null)
{
return ParseValue(Nullable.GetUnderlyingType(type), json);
}
to
https://github.com/zanders3/json/blob/master/src/JSONParser.cs#L251-L252
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels