Is it possible for me to use ChangeHappend in my derived class. If so how?
If not, what should I do instead?
class Base
{
public delegate void ChangeHandler(object sender);
public event ChangeHandler ChangeHappend;
private int _foo;
public int Foo
{
set
{
if (_foo == value) return;
_foo = value;
ChangeHappend(this);
}
}
}
class Derived : Base
{
private int _bar;
public int Bar
{
set
{
if (_bar == value) return;
_bar = value;
ChangeHappend(this); // This line gives an error. How can I use ChangeHappend here in Derived?
}
}
}
Use standard pattern: On[EventName]
public class MyBaseClass {
protected virtual void OnSomethingHappend( EventArgs e ) {
EventHandler handler = this.SomethingHappend;
if ( null != handler ) { handler( this, e ); }
}
public event EventhHandler SomethingHappend;
}
public MyDerivedClass : MyBaseClass {
public void DoSomething() {
this.OnSomethingHappend( EventArgs.Empty );
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With