示例#1
0
 public virtual void Build(CustomAttributeCollection customAttributes)
 {
     foreach (var customAttribute in customAttributes)
     {
         Build(customAttribute);
     }
 }
示例#2
0
 public void CopyTo(CustomAttributeCollection copy)
 {
     foreach (var item in this)
     {
         item.CopyTo(copy.Add());
     }
 }
 public virtual void Visit(CustomAttributeCollection customAttributes)
 {
     foreach (var customAttribute in customAttributes)
     {
         Visit(customAttribute);
     }
 }