I'm using Facebook C# sdk for desktop app. I'm getting the dynamic object and then extracting the name,id etc
dynamic result = fb.Get("/me");
string name=result.name;
Now problem is I can't extract the work information or favorite teams etc. I've used the required permissions, but unable to handle the dynamic object. It's in this format:
"languages": [
{
"id": "106502622718539",
"name": "Bānglā"
},
{
"id": "106059522759137",
"name": "English"
}
],
http://developers.facebook.com/tools/explorer/
Tried and searched a lot to get them. Found nothing. I've read that it comes in the form of array. Please help to extract those information through C# code..........