public virtual void VisitCatchClauseCollection(ICatchClauseCollection value) { for (int i = 0; i < value.Count; i++) { VisitCatchClause(value[i]); } }
public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n, Func<ICatchClause, ICatchClause, bool> checkitem) { return Compare<ICatchClause>(source,n,checkitem); }
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); }
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)); }
public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n) { return Compare<ICatchClause>(source,n); }
public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n, Func <ICatchClause, ICatchClause, bool> checkitem) { return(Compare <ICatchClause>(source, n, checkitem)); }
public static bool Compare(this ICatchClauseCollection source, ICatchClauseCollection n) { return(Compare <ICatchClause>(source, n)); }
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]); } }