https://github.com/willdev12/rjson
Encryptable Json file format for .NET projects!
https://github.com/willdev12/rjson
csharp csharp-library data dotnet json json-data json-plugin variables vbdotnet vbnet
Last synced: 2 months ago
JSON representation
Encryptable Json file format for .NET projects!
- Host: GitHub
- URL: https://github.com/willdev12/rjson
- Owner: WillDev12
- License: mit
- Created: 2023-06-20T16:18:22.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-23T02:47:09.000Z (almost 3 years ago)
- Last Synced: 2025-08-01T01:33:16.206Z (11 months ago)
- Topics: csharp, csharp-library, data, dotnet, json, json-data, json-plugin, variables, vbdotnet, vbnet
- Language: C#
- Homepage: https://nuget.org/packages/rJson
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README

rJson
What is this?
rJson is a powerful VS C# Library that allows you to pass encrypted data to and from files.
How to use
To start, simply prime with the following:
``` c#
using rJson;
rJs rJs = new rJs;
```
You can then transfer variables like so:
``` c#
var yourStuff = rJs.New("value1=hello,value2=world,password=123", null);
// If you would like to send your data to a file, simply write the filepath
// in place for null.
```
Now, parse and grab some data!
``` c#
var parsed = rJs.parse(yourStuff, null);
// Here you can leave one or the other null. As for the first parameter,
// that is for if you want to parse in-program rJson as shown, otherwise,
// swap the two variables but instead replace `yourStuff` with a filepath.
Console.WriteLine(rJs.getVar(parsed, "value1")); // will return "hello"
```
Owner
```
WillDev12 (WillDevv12)
```
License
```
MIT License
```
This project is open source and free to edit.
# Like content like this?
Check out my [profile](https://github.com/WillDev12) or share it! (this means a lot to me)
```
https://github.com/WillDev12
https://WillDev12.github.io
```