Ivan Porto carrero wrote:
> I've been meaning to ask this for a while now.
> Can I implement an event that is defined on an interface because
> whichever
> way I try it just won't work.
>
> public interface IHaveAnEvent { event EventHandler SomeEvent; }
>
> class EventImplementor
> include IHa
I've been meaning to ask this for a while now.
Can I implement an event that is defined on an interface because whichever
way I try it just won't work.
public interface IHaveAnEvent { event EventHandler SomeEvent; }
class EventImplementor
include IHaveAnEvent
# what now? I can't find any tes
June 22, 2009 10:43 PM
> To: ironruby-core@rubyforge.org
> Subject: Re: [Ironruby-core] Dynamic Binding fails if abstract event not
> implemented
>
> great - thanks for the follow up, Tomas.
>
> Is there a workaround we could use in the meantime? Really keen to get
> Cucumber
, June 22, 2009 10:43 PM
To: ironruby-core@rubyforge.org
Subject: Re: [Ironruby-core] Dynamic Binding fails if abstract event not
implemented
great - thanks for the follow up, Tomas.
Is there a workaround we could use in the meantime? Really keen to get
Cucumber going ;)
-Xerx
On Tue, Jun 23
?WorkItemId=1628.
>
> Tomas
>
> -Original Message-
> From: ironruby-core-boun...@rubyforge.org
> [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Xerxes Battiwalla
> Sent: Monday, June 22, 2009 9:04 PM
> To: ironruby-core@rubyforge.org
> Subject: [Ironruby-c
PM
To: ironruby-core@rubyforge.org
Subject: [Ironruby-core] Dynamic Binding fails if abstract event not implemented
Hi - I've just downloaded the latest IR source from GitHub and have a
problem with what looks like a regression from v0.4.
We have an interface defining an event which is impleme
Hi - I've just downloaded the latest IR source from GitHub and have a
problem with what looks like a regression from v0.4.
We have an interface defining an event which is implemented by an
abstract class in C#. In Ruby, we create an implementation of the
abstract class and call only a subset of me