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");
... in the absence of the C # 4.0 dynamic keyword, this provides only the general members of the object .
What is the best way to access the facebook properties of this result object?
Are there any helper or utility methods or stronger types in facebook's C # SDK, or should I use standard .NET mapping methods?
source share