I am using facebook C# sdk from codeplex and trying to download user\'s profile picture.
I know I can get this from:
http://graph.facebook.com/UID/picture?t
You can get the urls for the user's picture by using FQL
dim app as new facebookclient(token)
dim obj as jsonobject = app.get("me/")
dim fql as string = "Select pic_small, pic_big, pic_square from user where uid = " + CStr(obj("id"))
dim arr as jsonarray = app.query(fql)
Facebook FQL page for user table