improve my => 'code' 
The following code (surprise, surprise) compiles. But it does not work as intended (you won't be able to "doSomethingElse()!
Can any of you figure out why? (I have my suspicions.)
Jonathan Starr
using System;
namespace test
{
internal class BaseTest
{
private int _prop1;
public virtual int prop1
{
get { return _prop1; }
set { _prop1 = value; }
}
}
internal class DerivedTest : BaseTest
{
public override int prop1
{
set { base.prop1 = value; doSomethingElse(); }
}
}
}