This project provides a simple JSON parser written in C# without using any external libraries.
-
Read JSON Content:
- Parse and read JSON content string.
-
Differentiate Property Types:
- Identify single-value properties, multi-value properties, and arrays.
-
Support Multiple Value Types:
- Handle various types of JSON values including strings, numbers, booleans, and nested objects.
4 Convert JObject
to Formatted JSON String:
- Transforms a
JObject
into a well-formattedJSON string
with proper indentation and line breaks for readability.
- .NET Framework 4.7.2 or higher