Example #1
0
 public virtual ICollection <CatchClause> Visit(CatchClauseCollection node)
 {
     return(Visit <CatchClauseCollection, CatchClause>(node));
 }
 protected virtual void Write(IndentedTextWriter writer, CatchClauseCollection clauses)
 {
     Write(writer, clauses, "");
 }
Example #3
0
 public virtual void VisitCatchClauseCollection(CatchClauseCollection catchClauseCollection)
 {
     VisitCollection(catchClauseCollection);
 }
Example #4
0
 public static bool Compare(this CatchClauseCollection source, CatchClauseCollection n, Func<CatchClause, CatchClause, bool> checkitem)
 {
     return Compare<CatchClause>(source,n,checkitem);
 }
Example #5
0
 public static bool Compare(this CatchClauseCollection source, CatchClauseCollection n, Func<CatchClause, CatchClause, Action<string, string>, bool> checkitem, Action<string, string> errAct)
 {
     return Compare<CatchClause>(source,n,checkitem,errAct);
 }
Example #6
0
 public static bool Compare(this CatchClauseCollection source, CatchClauseCollection n)
 {
     return Compare<CatchClause>(source,n);
 }
Example #7
0
 public static bool Compare(this CatchClauseCollection source, CatchClauseCollection n, Func <CatchClause, CatchClause, Action <string, string>, bool> checkitem, Action <string, string> errAct)
 {
     return(Compare <CatchClause>(source, n, checkitem, errAct));
 }
Example #8
0
 public static bool Compare(this CatchClauseCollection source, CatchClauseCollection n, Func <CatchClause, CatchClause, bool> checkitem)
 {
     return(Compare <CatchClause>(source, n, checkitem));
 }
Example #9
0
 public static bool Compare(this CatchClauseCollection source, CatchClauseCollection n)
 {
     return(Compare <CatchClause>(source, n));
 }
        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;
        }