示例#1
0
 /// <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);
 }
示例#2
0
 /// <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);
 }
示例#3
0
 /// <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);
 }