public static T Process<T>(this string key)
where T:bool,string, DateTime
{
var tType = typeof(T);
if(tType == typeof(DateTime))
{
return DateTime.Parse(key.InnerProcess());
}
else if(tType == typeof(bool))
{
return bool.Parse(key.InnerProcess());
}
else if(tType == typeof(string))
{
return key.InnerProcess();
}
}
它说它不能从 bool 类型转换为 T,或 datetime 到 T.. 如何实现这一点?
给innerPrecess()
了我一个字符串。我想将它解析为给定参数的类型,然后返回它。