将ushort []数组转换为C#

时间:2016-05-09 08:53:42

标签: c# arrays

有一个ushort数组,ushort[]如何将ushort数组[44,55]转换为单个连接的ushort 4455?该数组总是有两个元素。

ushort[] test = new ushort[2];
test[0] = 44;
test[1] = 55;
// Here I want to convert the ushort[] to a unique ushort value 4455
usortValue = ?
return usortValue;

我希望.join功能与String一样,但ushort无法实现。

提前致谢

3 个答案:

答案 0 :(得分:4)

你可以聚合,谓词是"转换为字符串,连接并解析回ushort",但迟早(sooner!)你会溢出

ushort[] test = new ushort[2];
test[0] = 44;
test[1] = 55;
var result = test.Aggregate((p,c)  => ushort.Parse((p.ToString() + c.ToString())));

实例:http://rextester.com/VKV9570

答案 1 :(得分:2)

如何将数字转换为字符串并加入它们?

var result =string.Join("",test.Select(x=>x.ToString()));       
Convert.ToUInt16(result);

Demo

答案 2 :(得分:1)

ushortValue = Convert.ToUInt16(test[0].ToString() + test[1].ToString());