An open API service indexing awesome lists of open source software.

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!

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
```