1 instantiation of CodeTypeParameter
System.CodeDom (1)
System\CodeDom\CodeTypeParameterCollection.cs (1)
30public void Add(string value) => Add(new CodeTypeParameter(value));
14 references to CodeTypeParameter
System (1)
src\libraries\shims\System\ref\System.cs (1)
103[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.CodeDom.CodeTypeParameter))]
System.CodeDom (13)
Microsoft\VisualBasic\VBCodeGenerator.cs (1)
2073private void OutputTypeParameterConstraints(CodeTypeParameter typeParameter)
src\libraries\Common\src\System\CodeDom\CodeTypeReference.cs (1)
293public CodeTypeReference(CodeTypeParameter typeParameter) :
System\CodeDom\CodeTypeParameterCollection.cs (10)
17public CodeTypeParameterCollection(CodeTypeParameter[] value) 22public CodeTypeParameter this[int index] 24get => (CodeTypeParameter)List[index]; 28public int Add(CodeTypeParameter value) => List.Add(value); 32public void AddRange(CodeTypeParameter[] value) 59public bool Contains(CodeTypeParameter value) => List.Contains(value); 61public void CopyTo(CodeTypeParameter[] array, int index) => List.CopyTo(array, index); 63public int IndexOf(CodeTypeParameter value) => List.IndexOf(value); 65public void Insert(int index, CodeTypeParameter value) => List.Insert(index, value); 67public void Remove(CodeTypeParameter value) => List.Remove(value);
System\CodeDom\Compiler\CodeValidator.cs (1)
224private void ValidateTypeParameter(CodeTypeParameter e)