In the past I have used Visual Studio for C#
and .NET
developement. This little project is used to create a simple .NET
console program using Visual Studio Code. The goal is to confirm that for multiple value entries, the .NET parser will use the last entered value.
Use these instructions to get the project up and running.
I used the .NET Core SDK (3.1 SDK to ensure multi-platform support).
Also install the C# extension for Visual Studio Code.
In a terminal window type the following.
dotnet new console
This will create Program.cs
.
Run the program.
dotnet run
The results.
$ dotnet run
Running JSON parser order test...
JSON: { "one": 15, "one": 1.5 }
Variable set to: 1.5