我正在尝试使用Portable Class Library
使用ASP.NET Core 1.0
进行编码,以下说明:
public static void WriteMessage<T>(T value)
{
if (typeof(T).IsEnum)
{
Debug.Print("Is enum")
}
else
{
Debug.Print("Not Is enum")
}
}
但是这段代码没有编译,因为编译器说Type上没有属性IsEnum
。
有什么建议吗?