Is the class internal?
From: ironruby-core-boun...@rubyforge.org
[mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Kevin Pratt
Sent: Wednesday, July 28, 2010 7:35 AM
To: ironruby-core@rubyforge.org
Subject: Re: [Ironruby-core] Accessing classes that are inherited from generics.
I'l
C, D[C], D[T], Object, Kernel]
>
>
>
> Tomas
>
>
>
> *From:* ironruby-core-boun...@rubyforge.org [mailto:
> ironruby-core-boun...@rubyforge.org] *On Behalf Of *Charles Strahan
> *Sent:* Thursday, July 22, 2010 3:21 PM
> *To:* ironruby-core@rubyforge.org
> *Su
ronruby-core] Accessing classes that are inherited from generics.
I haven't tried it out, but perhaps Kevin was referring to this:
public class D {
}
public class C : D {
}
as opposed to what you tried:
public class D {
}
public class E {
}
public class C : D {
}
The distinction being th
I haven't tried it out, but perhaps Kevin was referring to this:
public class D {
}
public class C : D {
}
as opposed to what you tried:
public class D {
}
public class E {
}
public class C : D {
}
The distinction being that the subclasses type also happens to be the
superclass's ty
Can you send a small repro of what doesn't work (both C# and Ruby code)?
It works for me.
test.cs:
public class D {
}
public class E {
}
public class C : D {
}
---
>>> require 'test.dll'
=> true
>>> C.new
=> C
Tomas
From: ironruby-core-boun...@rubyforge.org
[mailto:ironruby-core-boun...@ruby