如何使用 Option Strict On 设置 DataGridViewCell.Value

发布于 2024-12-11 03:22:46 字数 413 浏览 2 评论 0原文

如何使用 Option Strict On 测试 DataGridViewCell.Value?

If DataGridViewCell.Value = "some value" then

给出错误:

Option Strict On disallows operands of type Object for operator '='. Use the 'Is' operator to test for object identity.

编辑:

解决方案是:

If DataGridViewCell.Value.ToString = "some value" then

How to test for DataGridViewCell.Value with Option Strict On?

If DataGridViewCell.Value = "some value" then

Gives the error:

Option Strict On disallows operands of type Object for operator '='. Use the 'Is' operator to test for object identity.

EDIT:

The Solution is:

If DataGridViewCell.Value.ToString = "some value" then

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

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

发布评论

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

评论(1

别低头,皇冠会掉 2024-12-18 03:22:46

错误消息与您的代码片段不匹配,该错误不能由作业生成。被迫猜测,使用 ToString() 方法:

 If DataGridViewCell.Value.ToString() = "some value" Then

或者使用 CStr() 运算符,这更像 VB 风格。

The error message doesn't match your code snippet, that error can't be generated by an assignment. Being forced to guess, use the ToString() method:

 If DataGridViewCell.Value.ToString() = "some value" Then

Or use the CStr() operator, that's more VB-ish.

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