I'm trying to code in a Portable Class Library
using ASP.NET Core 1.0
, the following instruction:
public static void WriteMessage<T>(T value)
{
if (typeof(T).IsEnum)
{
Debug.Print("Is enum")
}
else
{
Debug.Print("Not Is enum")
}
}
But this code does not compile because the compiler says that the property IsEnum
is non present on Type.
Any suggestions?