コード例 #1
0
 private bool RaiseReportEmptyLine(object target, long index)
 {
     if (_emptyLineReportableRecord != null)
     {
         return(ChoFuncEx.RunWithIgnoreError(() => _emptyLineReportableRecord.EmptyLineFound(index), true));
     }
     else if (Reader != null)
     {
         return(ChoFuncEx.RunWithIgnoreError(() => Reader.RaiseReportEmptyLine(index), true));
     }
     return(true);
 }