Skip to content
This repository was archived by the owner on May 18, 2026. It is now read-only.

EnumEnumerator

Narumikazuchi edited this page Sep 17, 2021 · 5 revisions

Description

Enumerates through enum values.

public static class EnumEnumerator

Members

EnumerateFlags<TEnum>(TEnum)
EnumerateValues<TEnum>()

Methods

EnumerateFlags<TEnum>(TEnum)

Enumerates the flags, which are set in the input value.

System.Collections.Generic.IEnumerable<TEnum> EnumerateFlags<TEnum>(TEnum)
    where TEnum : System.Enum;

EnumerateValues<TEnum>()

Enumerates through all values defined for the TEnum.

System.Collections.Generic.IEnumerable<TEnum> EnumerateValues<TEnum>()
    where TEnum : System.Enum;

Clone this wiki locally