class Plane
{
public event EventHandler Land;
protected void OnLand()
{
if ( null != Land )
{
Land( this, null );
}
}
}
Лучше всего использовать обработчик событий:
EventHandler temp = Land;
if ( null != temp )
{
temp( this, null );
}
Это действительно необходимо? В каком случае температура может отличаться от Land?