gpt4 book ai didi

c# - 使用 For 循环遍历 DataSet 中的所有 DataTable

转载 作者:太空宇宙 更新时间:2023-11-03 18:26:39 25 4
gpt4 key购买 nike

有谁知道如何使用 For Loop 而不是 foreach 循环遍历 Dataset 中的所有数据表?

我知道 foreach 循环可以做到这一点,但我想改用 For 循环。

例如:

foreach (DataTable table in ds.Tables)
{

}

我想改用 For 循环。

如果有人可以帮助我,我将不胜感激

最佳答案

您可以使用 ds.Tables.Count 属性来执行此操作:

 for (int i = 0; i < ds.Tables.Count; i++)
{
// access your table with indexes:
Console.WriteLine(ds.Tables[i].ToString());
}

关于c# - 使用 For 循环遍历 DataSet 中的所有 DataTable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32839873/

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