gpt4 book ai didi

c# - 如何根据泛型 T 的类型返回一个值

转载 作者:行者123 更新时间:2023-11-30 13:09:38 29 4
gpt4 key购买 nike

我有这样的方法:

public T Get<T>(string key)
{

}

现在假设如果类型是字符串我想返回“hello”,如果类型是 int 则返回 110011。

我该怎么做?

typeof(T) 似乎不起作用。

理想情况下,我想做一个 switch 语句,并根据泛型的类型(string/int/long/etc)返回一些东西。

这可能吗?

最佳答案

以下应该有效

public T Get<T>(string key) { 
object value = null;
if ( typeof(T) == typeof(int) ) {
value = 11011;
} else if ( typeof(T) == typeof(string) ) {
value = "hello";
}
return (T)value;
}

关于c# - 如何根据泛型 T 的类型返回一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3054346/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com