/// <summary> /// Set the index'th attribute /// </summary> /// <param name="index"></param> /// <param name="value"></param> public void Set(int index, SourceVersionAttribute value) { BaseSet(index, value); }
/// <summary> /// Set the attribute associated with a given type name /// </summary> /// <param name="type"></param> /// <param name="value"></param> public void Set(string type, SourceVersionAttribute value) { BaseSet(type, value); }
/// <summary> /// Add an attribute to the list /// </summary> /// <param name="type"></param> /// <param name="value"></param> public void Add(string type, SourceVersionAttribute value) { BaseAdd(type, value); }