1 instantiation of CodeTypeParameter
System.CodeDom (1)
System\CodeDom\CodeTypeParameterCollection.cs (1)
30
public 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)
2073
private void OutputTypeParameterConstraints(
CodeTypeParameter
typeParameter)
src\libraries\Common\src\System\CodeDom\CodeTypeReference.cs (1)
293
public CodeTypeReference(
CodeTypeParameter
typeParameter) :
System\CodeDom\CodeTypeParameterCollection.cs (10)
17
public CodeTypeParameterCollection(
CodeTypeParameter
[] value)
22
public
CodeTypeParameter
this[int index]
24
get => (
CodeTypeParameter
)List[index];
28
public int Add(
CodeTypeParameter
value) => List.Add(value);
32
public void AddRange(
CodeTypeParameter
[] value)
59
public bool Contains(
CodeTypeParameter
value) => List.Contains(value);
61
public void CopyTo(
CodeTypeParameter
[] array, int index) => List.CopyTo(array, index);
63
public int IndexOf(
CodeTypeParameter
value) => List.IndexOf(value);
65
public void Insert(int index,
CodeTypeParameter
value) => List.Insert(index, value);
67
public void Remove(
CodeTypeParameter
value) => List.Remove(value);
System\CodeDom\Compiler\CodeValidator.cs (1)
224
private void ValidateTypeParameter(
CodeTypeParameter
e)