Pandora.JsonLite 1.0.1.1

dotnet add package Pandora.JsonLite --version 1.0.1.1
                    
NuGet\Install-Package Pandora.JsonLite -Version 1.0.1.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Pandora.JsonLite" Version="1.0.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Pandora.JsonLite" Version="1.0.1.1" />
                    
Directory.Packages.props
<PackageReference Include="Pandora.JsonLite" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Pandora.JsonLite --version 1.0.1.1
                    
#r "nuget: Pandora.JsonLite, 1.0.1.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Pandora.JsonLite@1.0.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Pandora.JsonLite&version=1.0.1.1
                    
Install as a Cake Addin
#tool nuget:?package=Pandora.JsonLite&version=1.0.1.1
                    
Install as a Cake Tool

JsonLite

JsonLite is a lightweight implementation (.Net Core) of Json object representation and parsing.
It supports Dictionary, Array, Number, String, Boolean and Any. It doesn't require you to define a structure or class for deserialization. The library doesn't rely on any specific library and it is easily to be converted to support classical .Net Framework.

JsonObject

Base class of all Json objects.

JsonDictionary

Dictionary is a set of name value pair.

Example: { a: "value A", b: "value B" }

JsonArray

Array is a set of JsonObject.

Example: [100, 200, 300, true, false, "test string"]

JsonString

A text string.

Example: "test string"

JsonNumber

It can be a integer or float or double float.

Example: 100 or -10.1

JsonBoolean

Only can be true or false.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Pandora.JsonLite:

Package Downloads
Pandora.TestAutomation

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1.1 156 9/2/2025
1.0.0 200 9/10/2024