Answers for "what types can be assigned to enum c#"

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
0

C# enum

enum CellphoneBrand { 
        Samsung,
        Apple,
  		LG,
  		Nokia,
  		Huawei,
  		Motorola
    }
Posted by: Guest on November-08-2020

C# Answers by Framework

Browse Popular Code Answers by Language