Update copyright to 2020.

This commit is contained in:
2020-09-06 03:48:33 +02:00
parent 79183c8b68
commit 5e6b51506e
2 changed files with 9 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2016-2017 Valeriano Alfonso Rodriguez
Copyright (c) 2016-2020 Valeriano Alfonso Rodriguez
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@@ -5,23 +5,23 @@
### VAR.Json
Add the resulting assembly as reference in your projects, and this line on code:
using VAR.Json;
using VAR.Json;
Parse any string with JSON content:
var jsonParser = new JsonParser();
object result = jsonParser("{\"Test\": 1}");
var jsonParser = new JsonParser();
object result = jsonParser("{\"Test\": 1}");
Serialize any object to JSON:
var jsonWriter = new JsonWriter();
string jsonText = jsonWriter(new List<int>{1, 2, 3, 4});
var jsonWriter = new JsonWriter();
string jsonText = jsonWriter(new List<int>{1, 2, 3, 4});
## Building
A Visual Studio 2015 solutions are provided. Simply, click build on the IDE.
A .nuget package can be build using:
VAR.Json\Build.NuGet.cmd
VAR.Json\Build.NuGet.cmd
## Contributing
1. Fork it!