gpt4 book ai didi

c# - 在实时(未保存)Excel 数据和 C# 对象之间建立接口(interface)的最快方式

转载 作者:IT王子 更新时间:2023-10-29 04:11:50 25 4
gpt4 key购买 nike

我想知道将打开的 Excel 工作簿中的数据读写到 C# 对象的最快方法是什么。背景是我想开发一个从 Excel 使用并使用 excel 中保存的数据的 c# 应用程序。

业务逻辑将驻留在 C# 应用程序中,但数据将驻留在 Excel 工作簿中。用户将使用 Excel 并将单击 excel 工作簿上的按钮(或执行类似操作)以启动 c# 应用程序。然后,C# 应用程序将从 excel 工作簿中读取数据,处理数据,然后将数据写回 excel 工作簿。
可能有许多数据 block 需要读取并写回 excel 工作簿,但它们通常大小相对较小,比如 10 行和 20 列。有时可能需要处理大量数据,大约有 50,000 行和 40 列。

我知道使用 VSTO 相对容易做到这一点,但我想知道最快(但仍然稳健且优雅)的解决方案是什么,并了解速度。我不介意解决方案是建议使用第三方产品还是使用 C++。

明显的解决方案是使用 VSTO 或互操作,但我不知道与我当前用于读取数据的 VBA 相比性能如何,或者是否有任何其他解决方案。

这是在专家交流上发布的,说 VSTO 比 VBA 慢得多,但那是几年前的事了,我不知道性能是否有所提高。

http://www.experts-exchange.com/Microsoft/Development/VSTO/Q_23635459.html

谢谢。

最佳答案

我会把它当作一个挑战,并且敢打赌在 Excel 和 C# 之间随机移动数据的最快方法是使用 Excel-DNA - http://excel-dna.net .(免责声明:我开发了 Excel-DNA。但它仍然是真的......)

因为它使用 native .xll 接口(interface),所以它跳过了您使用 VSTO 或其他基于 COM 的加载项方法的所有 COM 集成开销。使用 Excel-DNA,您可以制作一个连接到菜单或功能区按钮的宏,该菜单或功能区按钮读取一个范围,对其进行处理,然后将其写回 Excel 中的一个范围。全部使用来自 C# 的 native Excel 界面 - 看不到 COM 对象。

我做了一个小测试函数,它将当前选择放入一个数组,对数组中的每个数字进行平方,并将结果从单元格 A1 开始写入工作表 2。您只需要添加(免费的)Excel-DNA 运行时,您可以从 http://excel-dna.net 下载它。 .

我读入 C#,处理并在不到一秒的时间内将一百万个单元格范围写回 Excel。这对您来说足够快吗?

我的函数如下所示:

using ExcelDna.Integration;
public static class RangeTools {

[ExcelCommand(MenuName="Range Tools", MenuText="Square Selection")]
public static void SquareRange()
{
object[,] result;

// Get a reference to the current selection
ExcelReference selection = (ExcelReference)XlCall.Excel(XlCall.xlfSelection);
// Get the value of the selection
object selectionContent = selection.GetValue();
if (selectionContent is object[,])
{
object[,] values = (object[,])selectionContent;
int rows = values.GetLength(0);
int cols = values.GetLength(1);
result = new object[rows,cols];

// Process the values
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < cols; j++)
{
if (values[i,j] is double)
{
double val = (double)values[i,j];
result[i,j] = val * val;
}
else
{
result[i,j] = values[i,j];
}
}
}
}
else if (selectionContent is double)
{
double value = (double)selectionContent;
result = new object[,] {{value * value}};
}
else
{
result = new object[,] {{"Selection was not a range or a number, but " + selectionContent.ToString()}};
}

// Now create the target reference that will refer to Sheet 2, getting a reference that contains the SheetId first
ExcelReference sheet2 = (ExcelReference)XlCall.Excel(XlCall.xlSheetId, "Sheet2"); // Throws exception if no Sheet2 exists
// ... then creating the reference with the right size as new ExcelReference(RowFirst, RowLast, ColFirst, ColLast, SheetId)
int resultRows = result.GetLength(0);
int resultCols = result.GetLength(1);
ExcelReference target = new ExcelReference(0, resultRows-1, 0, resultCols-1, sheet2.SheetId);
// Finally setting the result into the target range.
target.SetValue(result);
}
}

关于c# - 在实时(未保存)Excel 数据和 C# 对象之间建立接口(interface)的最快方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3840270/

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