Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

My C# skills must be out of date. Previously you had to use delegates and it was pretty cumbersome.


Even with delegates, C#'s version is pretty much equivalent to JS's:

JavaScript:

  var blah = function(){ return "im a function"};
C# 3.0:

  var blah = delegate { return "im a function"; };
C# 2.0:

  Func<string> blah = delegate { return "im a function"; };




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: