Delegates in c#

Any idea how to rewrite the following code in c#?

FB.API('/me/permissions', delegate (string response) {
  Debug.log ( response);
});

Solved, my bad, I had to just write double quotes in there.

Try this:

FB.API("/me/permissions", response => {
  Debug.Log(response);
});