IEnumerable<(Of <(<'T>)>)> Interface
Exposes the enumerator, which supports a simple iteration over a collection of a specified type.To browse the .NET Framework source code for this type, see the Reference Source.
Namespace:
System.Collections.GenericAssembly: Bridge (in Bridge.dll)
Syntax
[ExternalAttribute] [NamespaceAttribute] public interface IEnumerable<T> : IEnumerable, IBridgeClass
<ExternalAttribute> _ <NamespaceAttribute> _ Public Interface IEnumerable(Of T) _ Inherits IEnumerable, IBridgeClass
[ExternalAttribute] [NamespaceAttribute] generic<typename T> public interface class IEnumerable : IEnumerable, IBridgeClass
Type Parameters
- T
- The type of objects to enumerate.This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.