gpt4 book ai didi

c# - 将字符串转换为类型实例

转载 作者:行者123 更新时间:2023-11-30 13:23:42 25 4
gpt4 key购买 nike

你有替代这些代码的方法吗,我想要一个更通用的代码我试过转换类但没有成功

        public object convert(Type type, string value)
{
object r = null;
if (type == typeof(bool))
{
r = bool.Parse(value);
}
else if (type == typeof(int))
{
r = int.Parse(value);
}
else if (type == typeof(string))
{
r = value;
}

return r;
}

最佳答案

var conv = TypeDescriptor.GetConverter(type);
return conv.ConvertFromInvariantString(value);

如果您不想“不变”,则存在其他转换操作。这取决于您的需要。如果您希望应用语言环境设置等,另请参阅 ConvertFromString

关于c# - 将字符串转换为类型实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9434025/

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