How to get these values from the dynamic json object ?
I wanna assign the values for id and password to strings so I'll have something to work with after this stage.
Some code I already tired:
var nameOfProperty = "id";
var propertyInfo = myObject.GetType().GetProperty(nameOfProperty);
var id = jsonObject.id.ToString();
var id = Convert.ToString(jsonObject["id"]);
Some code I already tired:
var nameOfProperty = "id";
var propertyInfo = myObject.GetType().GetProperty(nameOfProperty);
var id = jsonObject.id.ToString();
var id = Convert.ToString(jsonObject["id"]);
