I\'m new to SO and programming and learning day by day with bits and pieces of tech (C#) jargons.
After Googling for a while, below is what I\'ve researched about
Anonymous methods or anonymous functions, what seems to be the same, basically are delegates. As the link you point out: http://msdn.microsoft.com/en-us/library/bb882516.aspx describes, anonymous methods provide a simplified way to pass method to be executed by another method. Like a callback. Another way to see it, is think about lambda expressions.
A named by the contrast is any common method.