将单元格值与 textbox.text 值进行比较 C#
长话短说,我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ws.Cells[i,"C"]
对象的.ToString()
方法返回System._ComObject
类型。您需要ws.Cells[i,"C"].Value.ToString()
。我测试了一下,发现两者是相等的。Taking the
.ToString()
method of thews.Cells[i,"C"]
object returns the typeSystem._ComObject
. You wantws.Cells[i,"C"].Value.ToString()
. I tested it, and it found the two were equal.