Hi
While working on the code for a ironrubymvc i came across the following code

controllerRubyClass.EnumerateMethods((_, symbolId, __) =>
                                                         {
                                                             if
(String.Equals(symbolId, actionName,

  StringComparison.OrdinalIgnoreCase))
                                                             {

controllerRubyMethodName = symbolId;
                                                                 return
true;
                                                             }
                                                             return false;
                                                         });

The tidbit I find interesting is the _ and the __ in the lambda. Is that an
equivalent for null or does it something else?
---
Met vriendelijke groeten - Best regards - Salutations
Ivan Porto Carrero
GSM: +32.486.787.582
Blog: http://flanders.co.nz
Twitter: http://twitter.com/casualjim
_______________________________________________
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to