Open sandboxFocus

Enum EnumerableKind

Kinds of iterators.

Namespace: Metalama.Framework.Code
Assembly: Metalama.Framework.dll
Syntax
[CompileTime]
public enum EnumerableKind

Fields

Name Description
IAsyncEnumerable

A method returning System.Collections.Generic.IAsyncEnumerable.

IAsyncEnumerator

A method returning System.Collections.Generic.IAsyncEnumerator.

IEnumerable

A method returning a generic IEnumerable<T>.

IEnumerator

A method returning a generic IEnumerator<T>.

None

None. The method does not returns an enumerable or enumerator.

UntypedIEnumerable

A method returning a non-generic IEnumerable.

UntypedIEnumerator

A method returning a non-generic IEnumerator.