My SDK, called the Facebook.Net SDK, will do this. The http://facebooksdk.codeplex.com SDK supports .Net 3.5 and .Net 4.0. If you can, I would recommend using .Net 4.0, as the experience will be better.
Sample code using .net 4.0 dynamic version:
FacebookApp app = new FacebookApp(); dynamic parameters = new ExpandoObject(); parameters.method = "ads.estimateTargetingStats"; parameters.account_id = "account_id"; parameters.targeting_spec = new List<string> { "spec1", "spec2" }; parameters.currency = "USD"; dynamic result = app.Api(parameters);
source share