使用C#

时间:2018-08-09 10:45:20

标签: c# vba

我有这个Excel范围,我需要将每个单元格内容除以1000。 在整个范围内循环遍历每个单元格需要花费很多时间。

有没有更有效的方法?

Dim c As Range 
For Each c In Range("B" & lastCol + 1 & ":Y" & lastRow) 
    If Not IsEmpty(c) Then 
        c = c / 1000 
    End If 
Next

需要将以上代码转换为C#。 谢谢!

0 个答案:

没有答案