예제 #1
0
        protected virtual void OnLineInserted(LineInsertEventArgs e)
        {
            LineInsertEventHandler lineInserted = this.LineInserted;

            if (lineInserted != null)
            {
                lineInserted(this, e);
            }
        }
예제 #2
0
파일: Waterfall.cs 프로젝트: zloiia/sdrsrc
 protected virtual void OnLineInserted(LineInsertEventArgs e)
 {
     LineInsertEventHandler insertEventHandler = this.LineInserted;
       if (insertEventHandler == null)
     return;
       insertEventHandler((object) this, e);
 }