예제 #1
0
 public virtual void VisitCustomAttributeCollection(ICustomAttributeCollection value)
 {
     for (int i = 0; i < value.Count; i++)
     {
         VisitCustomAttribute(value[i]);
     }
 }
예제 #2
0
 public static bool Compare(this ICustomAttributeCollection source, ICustomAttributeCollection n, Func<ICustomAttribute, ICustomAttribute, bool> checkitem)
 {
     return Compare<ICustomAttribute>(source,n,checkitem);
 }
예제 #3
0
 public static bool Compare(this ICustomAttributeCollection source, ICustomAttributeCollection n, Func<ICustomAttribute, ICustomAttribute, Action<string, string>, bool> checkitem, Action<string, string> errAct)
 {
     return Compare<ICustomAttribute>(source,n,checkitem,errAct);
 }
예제 #4
0
 public static bool Compare(this ICustomAttributeCollection source, ICustomAttributeCollection n, Func <ICustomAttribute, ICustomAttribute, Action <string, string>, bool> checkitem, Action <string, string> errAct)
 {
     return(Compare <ICustomAttribute>(source, n, checkitem, errAct));
 }
예제 #5
0
 public static bool Compare(this ICustomAttributeCollection source, ICustomAttributeCollection n)
 {
     return Compare<ICustomAttribute>(source,n);
 }
예제 #6
0
 public static bool Compare(this ICustomAttributeCollection source, ICustomAttributeCollection n, Func <ICustomAttribute, ICustomAttribute, bool> checkitem)
 {
     return(Compare <ICustomAttribute>(source, n, checkitem));
 }
예제 #7
0
 public static bool Compare(this ICustomAttributeCollection source, ICustomAttributeCollection n)
 {
     return(Compare <ICustomAttribute>(source, n));
 }
예제 #8
0
 public virtual void VisitCustomAttributeCollection(ICustomAttributeCollection value)
 {
     for (int i = 0; i < value.Count; i++)
     {
         this.VisitCustomAttribute(value[i]);
     }
 }
        public virtual ICustomAttributeCollection TransformCustomAttributeCollection(ICustomAttributeCollection attributes)
        {
            ICustomAttribute[] array = new ICustomAttribute[attributes.Count];
            for (int i = 0; i < attributes.Count; i++)
            {
                array[i] = this.TransformCustomAttribute(attributes[i]);
            }

            ICustomAttributeCollection target = new CustomAttributeCollection();
            target.AddRange(array);
            return target;
        }
 private void InsituTransformCustomAttributeCollection(ICustomAttributeCollection value)
 {
     for (int i = 0; i < value.Count; i++)
     {
         value[i] = this.TransformCustomAttribute(value[i]);
     }
 }