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

EnumEnumerator

Davy Ganzel edited this page Jun 3, 2022 · 5 revisions

Assembly: Narumikazuchi.dll
Namespace: Narumikazuchi

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.

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

EnumerateValues<TEnum>()

Enumerates through all values defined for the TEnum.

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

Clone this wiki locally