Example #1
0
 public void Remove(CustomAttribute value)
 {
     List.Remove(value);
 }
Example #2
0
 public void Insert(int index, CustomAttribute value)
 {
     List.Insert(index, value);
 }
Example #3
0
 public bool Contains(CustomAttribute value)
 {
     return(List.Contains(value));
 }
Example #4
0
 public int IndexOf(CustomAttribute value)
 {
     return(List.IndexOf(value));
 }
Example #5
0
 public void Add(CustomAttribute value)
 {
     List.Add(value);
 }