public virtual void Build(CustomAttributeCollection customAttributes) { foreach (var customAttribute in customAttributes) { Build(customAttribute); } }
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); } }