list转ushort数组
时间: 2024-08-29 10:03:55 浏览: 56
C#把数组中的某个元素取出来放到第一个位置的实现方法
5星 · 资源好评率100%
将List转换成ushort类型的数组,首先需要确保列表中元素都是ushort类型的或者是可以隐式转换成ushort的。以下是使用C#的一个示例:
```csharp
using System;
using System.Collections.Generic;
public List<ushort> ListToUShortArray(List<int> inputList)
{
// 验证列表中的所有元素都可以直接转换为ushort
foreach (int value in inputList)
{
if (value > ushort.MaxValue || value < ushort.MinValue)
throw new ArgumentException("列表中的元素不能转换为ushort");
}
// 创建一个新的ushort数组,长度等于列表
ushort[] ushortArray = new ushort[inputList.Count];
// 将list中的每个元素转换并复制到数组
for (int i = 0; i < inputList.Count; i++)
{
ushortArray[i] = (ushort)inputList[i];
}
return ushortArray;
}
// 使用示例
List<int> intList = new List<int> { 10, 20, 30 };
ushort[] result = ListToUShortArray(intList);
```
在这个例子中,`ListToUShortArray`函数接收一个整数列表,并检查其中的值是否适合转换。然后它创建一个新的ushort数组,并通过遍历列表完成转换。
阅读全文