Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

System.Collections.IDictionary and System.Collections.Generic.IDictionary interfaces in the BCL (Base Class Library) of the .NET framework represent a collection of key-value pairs.

learn more… | top users | synonyms

0
votes
0answers
36 views

Facebook friendslist - how to Convert to IDictionary?

How to convert this to use IDictionary for .NET 3.5? var auth = new CanvasAuthorizer { Perms = "user_about_me,friends_about_me" }; if (auth.Authorize()) { var fb = new ...
0
votes
1answer
422 views

Using IDictionary with Json?

how to get the friends list (below) into and out from a iDictionary? Example {   "data": [     {       "name": "John Smith",       "id": "111"     },     {       "name": "Alice Smith",       ...