first, you'll need to set up an application on facebook, and specify you'll be using it on a website. You can do that at http://developers.facebook.com/apps/
since you mention c# (which is vary hard to work with), here's the best way to do it in JS:
<div id="fb-root"></div>
<script language="javascript">
var facebookappid = '##FACEBOOK_APP_ID##';
//this is the site owners facebook id. note she must make all her galleries and pictures public
var userid = '8979567465474';
//load the facebook SDK
window.fbAsyncInit = function() {
FB.init({appId: facebookappid, status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
//get albums
var albums;
FB.api('/'+userid+'/albums/', 'get', function(response){
if (!response || response.error) {
albums = response.error;
} else {
albums = response;
}
});
</script>
From there you can take your albums variable, which is going to give you an array of album ids.
Loop through each album, and use the same code FB.api to get '/'+userid+'/'+albumid+'/photos'
You can use the Graph API explorer to view all of the information you get back from each array
https://developers.facebook.com/tools/explorer?method=GET
Here's an example of the data returned from my profile pictures album:
https://developers.facebook.com/tools/explorer?method=GET&path=159665340734292%2Fphotos%2F
Hopefully that helps! If you need further explanation just let me know :)