gpt4 book ai didi

c# - 将 IEnumerable 转换为 int[]

转载 作者:可可西里 更新时间:2023-11-01 08:14:45 25 4
gpt4 key购买 nike

如何在 C# 中将 IEnumerable 变量转换为 int[] 变量?

最佳答案

如果您能够使用 System.Linq,请使用 .ToArray() 扩展方法

如果您使用的是 .Net 2,那么您可以只是扯掉 System.Linq.Enumerable 实现 .ToArray 扩展方法的方式(我已经提升了代码这里几乎是逐字逐句 - 它需要 Microsoft® 吗?):

struct Buffer<TElement>
{
internal TElement[] items;
internal int count;
internal Buffer(IEnumerable<TElement> source)
{
TElement[] array = null;
int num = 0;
ICollection<TElement> collection = source as ICollection<TElement>;
if (collection != null)
{
num = collection.Count;
if (num > 0)
{
array = new TElement[num];
collection.CopyTo(array, 0);
}
}
else
{
foreach (TElement current in source)
{
if (array == null)
{
array = new TElement[4];
}
else
{
if (array.Length == num)
{
TElement[] array2 = new TElement[checked(num * 2)];
Array.Copy(array, 0, array2, 0, num);
array = array2;
}
}
array[num] = current;
num++;
}
}
this.items = array;
this.count = num;
}
public TElement[] ToArray()
{
if (this.count == 0)
{
return new TElement[0];
}
if (this.items.Length == this.count)
{
return this.items;
}
TElement[] array = new TElement[this.count];
Array.Copy(this.items, 0, array, 0, this.count);
return array;
}
}

有了这个你就可以做到这一点:

public int[] ToArray(IEnumerable<int> myEnumerable)
{
return new Buffer<int>(myEnumerable).ToArray();
}

关于c# - 将 IEnumerable<int> 转换为 int[],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6570334/

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