using System.Collections.Generic;
using System.Data.SqlClient;
using System.Threading.Tasks;
static private T GetMax<T>(Type type)
T maxValue = Enum.GetValues(type).Cast<T>().Max();
public static void Main()
Console.WriteLine(GetMax<long>(typeof(Color)));