Answers for "best way to use enum C# core"

C#
1

c# global enumerator

public class ClassName
{      
  // ... Other class members etc.
}

// Enum declared outside of the class
public enum Direction
{
  north, south, east, west
}
Posted by: Guest on April-21-2020

Code answers related to "best way to use enum C# core"

C# Answers by Framework

Browse Popular Code Answers by Language