In This Article

ITypeParameterCollection Interface

Provides the base requirements for a collection of ITypeParameter objects.

public interface ITypeParameterCollection : IObservableCollection<ITypeParameter>, IList<ITypeParameter>, ICollection<ITypeParameter>, IEnumerable<ITypeParameter>, IEnumerable

Properties

Item[String, Boolean]

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 Boolean

Whether to perform a case-sensitive name search.

Property Value

ITypeParameter:

The ITypeParameter with the specified name.

Inherited Members

Extension Methods