[Ironruby-core] nil != null ?
Ivan Porto Carrero
ivan at flanders.co.nz
Fri May 1 04:15:28 EDT 2009
Hi
I had specs that used to work but now apparently they don't anymore.
I'd expect that a nil from ruby maps to null in C# but this doesn't seem to
be the case.
I'm using the following code
public static bool IsNotNull(this object value)
{
return value != null;
}
public static bool IsNull(this object value)
{
return value == null;
}
>>> ObjectExtensions.is_null(nil)
:0: can't convert NilClass into Object (TypeError)
I'd expect it to return true ;)
---
Author of IronRuby in Action (http://manning.com/carrero)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20090501/39cf48fa/attachment.html>
More information about the Ironruby-core
mailing list