How to get a specifice property from a JSON string without convert/parsing it to a class, by using .NET
I only want to get the username property in the JSON example below:
{
"result": {
"item": {
"Profile": {
"address": "street x",
"city": "Riyadh",
"id": "56743",
"username": "testUser",
"email": "test@gmail.com",
"phone": "0555555555",
}
}
}
}
Is there an easy approach to obtain a single property without converting or parsing to a model?