我有一个string 类型字段,需要转化为uint[]类型,我的代码如下:
string temp = "2";
uint ui = convert.touInt32(temp);
uint[] arrUI = new uint[]{ui};
这样转化有错误吗?