Answers for "enum in method as argument c#"

C#
0

enum in method as argument c#

public static void MyEnumMethod(Enum e)
    {
        var enumValues = Enum.GetValues(e.GetType());
        // you can iterate over enumValues with foreach
    }

MyEnumMethod(new MyEnum());
Posted by: Guest on October-18-2020

C# Answers by Framework

Browse Popular Code Answers by Language