gpt4 book ai didi

c# - 在 C# 2005 中返回多个数据表

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

我在一个类(class)里有 table1 和 table2..

public DataTable sampletable (DataTable table1,DataTable table2)
{
// How to return the two table(table1 and table2)
}

提前谢谢

最佳答案

public DataTable[] sampletable (DataTable table1,DataTable table2) 
{
return new DataTable[] { table1, table2 };
}

使用数组。并检索特定表:

DataTable[] dtArray = sampletable (YourFirstDt, YourSecondDt);

DataTable table1 = dtArray[0];
DataTable table2 = dtArray[1];

关于c# - 在 C# 2005 中返回多个数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9090062/

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