Accessing facebook sdk result Object using .NET 3.5 API?

Posted by John K on Stack Overflow See other posts from Stack Overflow or by John K
Published on 2011-01-12T23:48:42Z Indexed on 2011/01/13 5:54 UTC
Read the original article Hit count: 142

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");
// want to access result properties with no dynamic

... in the absence of the C# 4.0 dynamic keyword this provides only generic object members. How best should I access the facebook properties of this result object?

Are there helper or utility methods or stronger types in the facebook C# SDK, or should I use standard .NET reflection techniques?

© Stack Overflow or respective owner

Related posts about dynamic

Related posts about c#-3.0