Ejemplo n.º 1
0
        protected virtual void OnLineInserted(LineInsertEventArgs e)
        {
            LineInsertEventHandler lineInserted = this.LineInserted;

            if (lineInserted != null)
            {
                lineInserted(this, e);
            }
        }
Ejemplo n.º 2
0
 protected virtual void OnLineInserted(LineInsertEventArgs e)
 {
     LineInsertEventHandler insertEventHandler = this.LineInserted;
       if (insertEventHandler == null)
     return;
       insertEventHandler((object) this, e);
 }