gpt4 book ai didi

c# - 如何将字符串的值转换为类型

转载 作者:行者123 更新时间:2023-12-02 22:35:14 25 4
gpt4 key购买 nike

由于 WCF 不支持类型,我将类型作为字符串类型传递。例如:

var str= "int"

现在我想将其转换为 int 类型,因为我想将 CLR 类型作为参数传递。

有什么方法可以实现吗?

最佳答案

你的意思是喜欢用Type.GetType()

string typeName = "System.Int32"; // Sadly this won't work with just "int"
Type actualType = Type.GetType(typeName);

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

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