using System;
public enum EnumType {
TypeA,
TypeB
}
public class Program
{
static EnumType? whatever => EnumType.TypeA;
public static void Main()
Console.WriteLine(whatever);