Consider the following in .NET 3.5 (using the Bin\\Net35\\Facebook*.dll assemblies):
using Facebook;
var app = new FacebookApp();
var result = app.Get(\"me\
This code sample shows 3.5 usage, without needing the C# dynamic keyword:
// Using IDictionary (.Net 3.5)
var client = new FacebookClient();
var me = (IDictionary)client.Get("me");
string firstName = (string)me["first_name"];
string lastName = (string)me["last_name"];
string email = (string)me["email"];