コード例 #1
0
 public virtual void VisitCatchClauseCollection(ICatchClauseCollection value)
 {
     for (int i = 0; i < value.Count; i++)
     {
         VisitCatchClause(value[i]);
     }
 }
コード例 #2
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n, Func<ICatchClause, ICatchClause, bool> checkitem)
 {
     return Compare<ICatchClause>(source,n,checkitem);
 }
コード例 #3
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n, Func<ICatchClause, ICatchClause, Action<string, string>, bool> checkitem, Action<string, string> errAct)
 {
     return Compare<ICatchClause>(source,n,checkitem,errAct);
 }
コード例 #4
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n, Func <ICatchClause, ICatchClause, Action <string, string>, bool> checkitem, Action <string, string> errAct)
 {
     return(Compare <ICatchClause>(source, n, checkitem, errAct));
 }
コード例 #5
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n)
 {
     return Compare<ICatchClause>(source,n);
 }
コード例 #6
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n, Func <ICatchClause, ICatchClause, bool> checkitem)
 {
     return(Compare <ICatchClause>(source, n, checkitem));
 }
コード例 #7
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n)
 {
     return(Compare <ICatchClause>(source, n));
 }
コード例 #8
0
 public virtual void VisitCatchClauseCollection(ICatchClauseCollection value)
 {
     for (int i = 0; i < value.Count; i++)
     {
         this.VisitCatchClause(value[i]);
     }
 }
コード例 #9
0
        public virtual ICatchClauseCollection TransformCatchClauseCollection(ICatchClauseCollection value)
        {
            ICatchClause[] array = new ICatchClause[value.Count];
            for (int i = 0; i < value.Count; i++)
            {
                array[i] = this.TransformCatchClause(value[i]);
            }

            ICatchClauseCollection target = new CatchClauseCollection();
            target.AddRange(array);
            return target;
        }
コード例 #10
0
 private void InsituTransformCatchClauseCollection(ICatchClauseCollection value)
 {
     for (int i = 0; i < value.Count; i++)
     {
         value[i] = this.TransformCatchClause(value[i]);
     }
 }