I have an Enum of different AppTypes.
public enum AppType
{
    DefaultApps = 1,
    GlobalApps = 3,
    PrivateApps = 'L'
}
I will receive a string of form "1", "3" or "L" and want to use this in switch statement. I am trying to do as below. but not working. am I missing anything.
switch (appTypeString)
{
  case $"{(char)AppType.DefaultApps}:": // also tried nameof(AppType.GlobalApps)
    Console.WriteLine("Default Catalog Apps");
    break;
  case nameof(AppType.GlobalApps):
    Console.WriteLine("Global Catalog Apps");
    break;
  case nameof(AppType.PrivateApps):
    Console.WriteLine("Private Catalog Apps");
    break;
  default:
    Console.WriteLine("Unknown App Type");
    break;
}