using System.Collections.Generic;
public static void Main()
string json = @"[{'id':1,'DbServerInstance':'Ej8/Pz9ubnldPx9ePxk=','DbServerUser':'Px4/Ez8/Pz8/DT9OfBo=','DbServerPassword':'TWsYRiQ/PyM/ZT8/PzJZ','DbServerDatabase':'PwVRczpEPz8aPz8/DnRD','UserManualURL':'Pz8rNUd2PxdAPzM/Uxw/Wg==','ApplicationName':'PzwAAm5MTks/Pz0obD9P'}]";
var rp = JsonConvert.DeserializeObject<List<JSONResponse>>(json);
Console.WriteLine(value.id);
Console.WriteLine(value.dbServerInstance);
Console.WriteLine(value.dbServerUser);
public class JSONResponse{
[JsonProperty(PropertyName = "id")]
public int id { get; set; }
[JsonProperty(PropertyName = "DbServerInstance")]
public string dbServerInstance { get; set; }
[JsonProperty(PropertyName = "DbServerUser")]
public string dbServerUser { get; set; }
[JsonProperty(PropertyName = "DbServerPassword")]
public string dbServerPassword { get; set; }
[JsonProperty(PropertyName = "DbServerDatabase")]
public string dbServerDatabase { get; set; }
[JsonProperty(PropertyName = "UserManualURL")]
public string userManualURL { get; set; }
[JsonProperty(PropertyName = "ApplicationName")]
public string applicationName { get; set; }
public IList<JSONResponse> Params { get; set; }