UtilJsonParseJsonLightweightTValue(String) Method

Parses a JSON string and returns a DictionaryTKey, TValue representing the JSON key-value pairs, where all the values are casted to the specified 'TValue' type.

Note: This method is a lightweight, free dependency solution to parse a JSON string.

Original author: https://stackoverflow.com/a/13192508/1248295

Consider to use it only when adding external references (like JSON.net) to the project is either extremely problematic or impossible.

Definition

Namespace: DevCase.Core.DataProcessing.Json
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static Dictionary<string, TValue> ParseJsonLightweight<TValue>(
	string json
)

Parameters

json  String
The JSON string to parse.

Type Parameters

TValue

Return Value

DictionaryString, TValue
A DictionaryTKey, TValue representing the JSON key-value pairs.

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also