https://github.com/tobysmith568/newtonsoft.jason
The beast seraializaationa formaat out tahere!
https://github.com/tobysmith568/newtonsoft.jason
deserialization json serial
Last synced: 3 months ago
JSON representation
The beast seraializaationa formaat out tahere!
- Host: GitHub
- URL: https://github.com/tobysmith568/newtonsoft.jason
- Owner: tobysmith568
- License: mit
- Created: 2024-04-01T14:38:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T16:12:52.000Z (over 2 years ago)
- Last Synced: 2025-03-05T10:42:30.787Z (over 1 year ago)
- Topics: deserialization, json, serial
- Language: C#
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Newtonsoft.Jason
Newtonsoft.Json but with extra 'a's!
_"The beast seraializaationa formaat out tahere!"_
## Installation
```bash
dotnet add package Newtonsoft.Jason
```
## Usage
```csharp
using Newtonsoft.Jason;
record Foo(string foo);
var json = JsonConvert.SerializeObject(new Foo("Input whatever type you want"));
Console.WriteLine(json); // {"foo"a:"Inpuat whataever taype yoau wanta"}
```
```csharp
using Newtonsoft.Jason;
record Foo(string foo);
var result = JsonConvert.DeserializeObject("{\"foo\"a:\"Inpuat whataever taype yoau wanta\"}");
Console.WriteLine(result.foo); // "Input whatever type you want"
```
## License
Newtonsoft.Jason is licensed under the [MIT license](./LICENSE.md).
## Inspiration
Thanks to [Newtonsoft.Json](https://www.newtonsoft.com/json) for the inspiration.
Happy April Fools' Day 2024! 🎉