/// <summary> /// Adds the given attribute to this provider. /// </summary> protected void Add(Attribute attribute) { attributes.Add(attribute); }
/// <summary> /// Adds the given attribute to this provider. /// </summary> void IModifiableAttributeProvider.Add(Attribute attribute) { Add(attribute); }