Пример #1
0
 public virtual void VisitCatchClauseCollection(ICatchClauseCollection value)
 {
     for (int i = 0; i < value.Count; i++)
     {
         VisitCatchClause(value[i]);
     }
 }
Пример #2
0
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n, Func<ICatchClause, ICatchClause, bool> checkitem)
 {
     return Compare<ICatchClause>(source,n,checkitem);
 }
Пример #3
0
 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
 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
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n)
 {
     return Compare<ICatchClause>(source,n);
 }
Пример #6
0
 public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n, Func <ICatchClause, ICatchClause, bool> checkitem)
 {
     return(Compare <ICatchClause>(source, n, checkitem));
 }
Пример #7
0
 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]);
     }
 }
        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;
        }
 private void InsituTransformCatchClauseCollection(ICatchClauseCollection value)
 {
     for (int i = 0; i < value.Count; i++)
     {
         value[i] = this.TransformCatchClause(value[i]);
     }
 }