Search
 
SCRIPT & CODE EXAMPLE
 

BASIC

JsonFileWrapper

using MarcusMedinaPro.JsonFileWrapper;
// preparing the object
var file = new JsonFile<List<Person>>("Friends")
file.Load();
var People = file.Data;

// Now you can use your list as you want
People.Add(new Person { Name = "Adam", LastName = "West" });
People.Add(new Person { Name = "Bob", LastName = "Hoskins" });
People.Add(new Person { Name = "James", LastName = "Woods" });

// Save the list
file.Save();
Comment

PREVIOUS NEXT
Code Example
Basic :: Loop inner fiter() 
Basic :: visual basic excel freeze first row 
Elixir :: for loop in elixir 
Elixir :: elixir rescue 
Elixir :: generate random number elixir 
Elixir :: elixir change map key name 
Elixir :: elixir eval ast 
Elixir :: phoenix ecto query expression 
Elixir :: elixir comparison 2 different data types 
Scala :: how to transform Nil to None scala 
Scala :: scala map example 
Scala :: get first string from list scala 
Scala :: map function scala 
Actionscript :: rabbitmq login was refused using plain 
Excel :: google sheets countif current month 
Excel :: select full column in excel 
Perl :: perl variables 
Perl :: how to initialize an array 
Pascal :: comment in pascal 
Powershell :: Windows 10 fbomber Batch Script 
Clojure :: Clojure defn 
Cobol :: Cobol reverse a string 
Assembly :: how to check if chat is nsfw discord.py 
Assembly :: import pyautogui Traceback (most recent call last): File "<stdin", line 1, in <module ImportError: No module named pyautogui 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: jquery remove required attribute 
Javascript :: react refresh page 
Javascript :: javascript void(0) href 
Javascript :: get tomorrows date using moment 
Javascript :: random number between 0 and 3 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =