gpt4 book ai didi

c# - 在 foreach 循环中跳过特定类型的项目

转载 作者:太空狗 更新时间:2023-10-29 18:07:35 29 4
gpt4 key购买 nike

我有这段代码用于从 excel 文件中填充数据表:

for (int rowIndex = cells.FirstRowIndex; rowIndex <= cells.LastRowIndex; rowIndex++)
{
var values = new List<string>();
foreach (var cell in cells.GetRow(rowIndex))
{
values.Add(cell.Value.StringValue);
}
dataTable.LoadDataRow(values.ToArray(), true);
}

当单元格与我在表格中设置的数据类型不同时,我遇到了问题。

如何跳过数据类型错误的单元格?

我也知道这一点,但我不能让它在我的情况下工作:

foreach //...
{
if //if datatype is not right
{
continue;
}
}

最佳答案

您可以使用 LINQ OfType<IMyType>()过滤掉错误项的方法:

// do not forget adding using System.Linq;
var filteredItems = items.OfType<IMyType>();
var values = new List<IMyType>(filteredItems);

MSDN :

Filters the elements of an IEnumerable based on a specified type. The OfType(IEnumerable) method returns only those elements in source that can be cast to type TResult

关于c# - 在 foreach 循环中跳过特定类型的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9016373/

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