YAXLib is an XML Serialization library which allows the programmer to structure freely the XML result, choose the fields to serialize (public, or non-public properties, or member variables), serialize all known generic and non-generic collections, serialize different kinds of arrays...
More information
A fast, light weight and fluent JSON - Object converter.
For more information, please visit:
https://github.com/yanggujun/commonsfornet/wiki/Commons.Json
This package can deserialize any String, Stream, or StreamReader (On HAL+JSON format or not) provided by a web api response.
Installation:
On the package console run :
Install-Package HALJSonDeserializer
Usage:
After installation you must include the namespace of the package where you will use...
More information
A .NET Standard class library with JsonConverters to assist with serializing/deserializing collections, including support for collections serialized as either an array or single value.
A simplified Generic method to GET or POST JSON using HTTP, & get it deserialized or serialized into the Object of specified type.
Example:
Sample sample = new JsonHttpClient<Sample>("http://localhost:10000/api/values").Deserialize();