public static void Main()
AccountType accountType = AccountType.Admin;
Console.WriteLine($"Hello World {accountType} , {GetUserFriendlyName(1)}");
private static string GetUserFriendlyName(byte accountTypeId)
Enum.TryParse(accountTypeId.ToString(), out AccountType accountType );
return "I dont know you";