public void Remove(CodeTypeParameter value)
 {
     List.Remove(value);
 }
 public void Insert(int index, CodeTypeParameter value)
 {
     List.Insert(index, value);
 }
 public int IndexOf(CodeTypeParameter value)
 {
     return(List.IndexOf(value));
 }
 public bool Contains(CodeTypeParameter value)
 {
     return(List.Contains(value));
 }
 public int Add(CodeTypeParameter value)
 {
     return(List.Add(value));
 }
Beispiel #6
0
 public CodeTypeReference(CodeTypeParameter typeParameter) :
     this((typeParameter == null) ? (string)null : typeParameter.Name)
 {
     _referenceOptions = CodeTypeReferenceOptions.GenericTypeParameter;
 }