You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+[Demo.cs](Demo.cs) : A simple demo app, showing a few simple commands. It's needs a running node.
7
+
+[Demo_getaddress_since.cs](Demo_getaddress_since.cs) : A simple demo app, showing the `api_getaddresssince` api command. It's needs a running node.
8
+
9
+
## Notes
10
+
11
+
Use [newtonsoft-json](https://www.nuget.org/packages/Newtonsoft.Json/) package to parse JSON API response. To download from NuGet, You can do this a couple of ways.
12
+
13
+
**Via the "Solution Explorer"**
14
+
15
+
Simply right-click the "References" folder and select "Manage NuGet Packages..."
16
+
Once that window comes up click on the option labeled "Online" in the left most part of the dialog.
17
+
Then in the search bar in the upper right type "json.net"
18
+
Click "Install" and you're done.
19
+
20
+
**Via the "Package Manager Console"**
21
+
22
+
Open the console. "View" > "Other Windows" > "Package Manager Console"
23
+
Then type the following:
24
+
25
+
Install-Package Newtonsoft.Json
26
+
27
+
For more info on how to use the "Package Manager Console" check out the [nuget docs](https://docs.microsoft.com/fr-fr/nuget/tools/package-manager-console).
28
+
29
+
### Patches
30
+
31
+
Anybody can contribute to development. If you are contributing a source code change, use a merge request of a Git branch.
0 commit comments