I'm currently working on a project which requires me to deserialize a JSON file, but it's showing to be harder to do and understand than I initially thought it would be.
What I want to do is deserialize this JSON file into a ListBox on my Windows Form project (located here). I want to put each of the versions located in "Unity5Stable" into the ListBox (5.4.3, 5.4.2, etc.)
Partial json:
{
"Unity5Stable": {
"5.4.3": {
"x86": "http://netstorage.unity3d.com/unity/01f4c123905a/Windows32EditorInstaller/UnitySetup32-5.4.3f1.exe",
"x64": "http://netstorage.unity3d.com/unity/01f4c123905a/Windows64EditorInstaller/UnitySetup64-5.4.3f1.exe"
},
"5.4.2": {
"x86": "http://download.unity3d.com/download_unity/b7e030c65c9b/Windows32EditorInstaller/UnitySetup32-5.4.2f2.exe",
"x64": "http://download.unity3d.com/download_unity/b7e030c65c9b/Windows64EditorInstaller/UnitySetup64-5.4.2f2.exe"
},
"5.4.1": {
"x86": "http://download.unity3d.com/download_unity/649f48bbbf0f/Windows32EditorInstaller/UnitySetup32-5.4.1f1.exe",
"x64": "http://download.unity3d.com/download_unity/649f48bbbf0f/Windows64EditorInstaller/UnitySetup64-5.4.1f1.exe"
}
}
}
I've tried a few different suggestions from a couple sites but I'm having a hard time finding anything related to putting the objects into a ListBox.
Any help would be greatly appreciated!