I have downloaded the Graph C# SDK for facebook, the examples are very helpful and easy to understand however i come unstuck when trying to use the dynamic object type as the re
You might want to look at this article http://blog.prabir.me/post/Facebook-CSharp-SDK-Writing-your-first-Facebook-Application.aspx
var fb = new FacebookClient("access_token");
var result = (IDictionary)fb.Get("/me");
var name = (string)result["name"];
MessageBox.Show("Hi " + name);
You will need to cast it to IDictionary