I\'m using Facebook SDK C# Library in Asp.Net 3.5 Application. When I\'m trying to compile the code below give me the errors. As I know dynamic type using in 4.0 framework.
So i
If you don't want to use dynamic, you don't have to.
var client = new FacebookClient();
var me = client.Get("totten") as IDictionary;
string firstName = (string)me["first_name"];
string lastName = me["last_name"].ToString();