gpt4 book ai didi

C# Excel 范围管理

转载 作者:行者123 更新时间:2023-11-30 14:07:14 25 4
gpt4 key购买 nike

我在 C# 应用程序中处理 excel 文件。

我想知道为什么这段代码不起作用:

var value1 = ws.Range[ws.Cells[7,4]].Value;

现在我发现这工作正常:

int i = 7;
var value1 = ws.Range["D" + i.ToString()].Value;

最佳答案

因为您不能将单个 Cells() 属性传递给 Range(),所以您需要使用 Cells()< 的 2 个参数来设置它:

var value1 = ws.Range[ws.Cells[7,4],ws.Cells[7,4]].Value;

或(严格使用 Cells 属性):

var value1 =  ws.Cells[7,4].Value;

关于C# Excel 范围管理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42389743/

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