public static void Main()
Console.WriteLine(BuscaUsuarioAsync());
static UsuarioApp BuscaUsuarioAsync()
UsuarioApp usuarioApp = new UsuarioApp();
""cidade"": ""São Luís"",
""cpf"": ""123.456.789-01"",
""dataNascimento"": ""2019-04-08"",
""endereco"": ""AVENIDA CASTELINHO"",
""estado"": ""Maranhão"",
""nome"": ""ADMINISTRADOR"",
""numero"": ""SEM NUMERO"",
""rg"": ""123456789012345""
resultado = @"{""bairro"":""JORDOA"",""cep"":""65065-545"",
""cidade"":""São Luís"",""complemento"":"""",
""cpf"":""123.456.789-01"",""dataNascimento"":""2019-04-08"",
""endereco"":""AVENIDA CASTELINHO"",""estado"":""Maranhão"",
""id"":16,""idade"":""25"",""nome"":""ADMINISTRADOR"",
""nomeMae"":""SUPERVISAO DE INFORMATICA"",
""nomePai"":"""",""numero"":""SEM NUMERO"",
""rg"":""123456789012345""}";
usuarioApp = JsonConvert.DeserializeObject<UsuarioApp>(resultado);
Console.WriteLine("buscou" + usuarioApp.nome);
Console.WriteLine(resultado);
public int id { get; set; }
public string nome { get; set; }
public string nomeMae { get; set; }
public string nomePai { get; set; }
public string dataNascimento { get; set; }
public string cpf { get; set; }
public string rg { get; set; }
public string idade { get; set; }
public string endereco { get; set; }
public string numero { get; set; }
public string complemento { get; set; }
public string cep { get; set; }
public string bairro { get; set; }
public string cidade { get; set; }
public string estado { get; set; }