将单元格值与 textbox.text 值进行比较 C#

发布于 2024-11-28 13:45:15 字数 191 浏览 1 评论 0原文

长话短说,我在 C# 中编写了通过行进行 excel 迭代的比较:

if(ws.Cells[i, "C"].ToString() == TextBox12.Text)

结果抛出了 com hresult 异常。进行这种比较的正确方法是什么?我在互联网上进行了大量搜索,但没有任何适合我的。 需要帮助!

long story short I have written a comparison for excel iterationh through rows in C# :

if(ws.Cells[i, "C"].ToString() == TextBox12.Text)

which turns out to be throwing an com hresult exception. What is the right way to do this comparison? I've done extensive searches on the internet but nothing that suits me.
Help needed!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抹茶夏天i‖ 2024-12-05 13:45:16

使用 ws.Cells[i,"C"] 对象的 .ToString() 方法返回 System._ComObject 类型。您需要 ws.Cells[i,"C"].Value.ToString()。我测试了一下,发现两者是相等的。

Taking the .ToString() method of the ws.Cells[i,"C"] object returns the type System._ComObject. You want ws.Cells[i,"C"].Value.ToString(). I tested it, and it found the two were equal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文