Search results

  1. F

    JSON Array with RootObject and SubObjects

    U can use the Newtonsoft lib to deserialize: using System; using Newtonsoft.Json; //JSON Lib public class Program { public static void Main(string[] args) { string jsonString = "{\"status\": \"Active\",\"activatedOn\": \"2021-02-09T00:00:00\",\"licenseType\": \"Production\"}"...
  2. F

    JSON Array with RootObject and SubObjects

    U can access these properties directly within the methods or properties of the API class. public class Api{ public string source { get; set; } public int max_verz { get; set; } public int rest_verz { get; set; } // Here we create the constructor public Api(string source...
  3. F

    Deleted

    Deleted
Top