ITypeParameterCollection Interface
Provides the base requirements for a collection of ITypeParameter objects.
public interface ITypeParameterCollection : IObservableCollection<ITypeParameter>
Properties
this[string, bool]
Gets the ITypeParameter with the specified name.
[C#] In C#, this property is the indexer for the ITypeParameterCollection
interface.
ITypeParameter this[string name, bool caseSensitive] { get; }
Parameter | Type | Description |
---|---|---|
name | string | The name of the ITypeParameter to return. |
caseSensitive | bool | Whether to perform a case-sensitive name search. |
Property Value
- ITypeParameter:
The ITypeParameter with the specified name.