gpt4 book ai didi

c# - 如何将 TypeCode 转换为实际类型?

转载 作者:可可西里 更新时间:2023-11-01 03:13:17 25 4
gpt4 key购买 nike

在下面的代码中,我得到了 colType,它是该类型的代码编号。但是我如何将该数字转换为实际类型呢?谢谢!!

for (int j = 0; j < dvColumns.Count; j++)
{
// Get the name of the column.
drvCols = dvColumns[j];
colName = drvCols.Row.ItemArray[3].ToString();

// Get columns data type code and save it off.
colType = Convert.ToInt32(drvCols.Row.ItemArray[11]);
}

最佳答案

更简单:

Type type = Type.GetType("System." + colType);

如果你想把一个值转换成那个类型你可以直接使用typecode

Convert.ChangeType(value, colType);

关于c# - 如何将 TypeCode 转换为实际类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5915740/

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