I've got a JObject class and the members are dynamic, but I don't know how to access the dynamic member when the member name is stored in a variable.
Code is below.
 dynamic deserializedProduct = JObject.Parse(json);
 string[] user = emailBox.Text.Split('@');
 string pass = deserializedProduct.user[0].password;
 MessageBox.Show(pass);
// User[0] represents the member name
Any help would be greatly appreciated.