如何修复动态对象的InvalidCastException?

发布于 2024-11-28 05:51:01 字数 706 浏览 1 评论 0原文

ScriptEngine rubyEngine;
//...
dynamic execution_result = rubyEngine.Execute(script, scope);

if (execution_result != null && !silent)
    WriteResponce(execution_result.ToString());

此代码生成 InvalidCastException

无法将“SOMELIB.Graphics”类型的对象转换为类型 'SOMELIB.Object'。

当比较发生时:

执行结果!= null

如果删除此比较,则execution_result.ToString() 会引发相同的异常。

我找到了解决方法:

if (execution_result is SOMELIB.Graphics)
{
    SOMELIB.Graphics g = execution_result as SOMELIB.Graphics;
    WriteResponce(g.ToString());
    return;
}

但我不明白为什么会出现此异常以及如何修复它。

ScriptEngine rubyEngine;
//...
dynamic execution_result = rubyEngine.Execute(script, scope);

if (execution_result != null && !silent)
    WriteResponce(execution_result.ToString());

This code generates InvalidCastException:

Unable to cast object of type 'SOMELIB.Graphics' to type
'SOMELIB.Object'.

When the comparison occurs:

execution_result != null

If this comparison is removed, then execution_result.ToString() throws the same exception.

I have found a workaround:

if (execution_result is SOMELIB.Graphics)
{
    SOMELIB.Graphics g = execution_result as SOMELIB.Graphics;
    WriteResponce(g.ToString());
    return;
}

but I don't understand why does this exception appear and how to fix it.

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

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

发布评论

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

评论(1

那支青花 2024-12-05 05:51:01

将动态转换为对象以避免 DLR(动态语言运行时)尝试将 ToString 方法绑定到其(真正的)动态类类型。

ScriptEngine rubyEngine;
//...
dynamic execution_result = rubyEngine.Execute(script, scope);

object result = execution_result as object;
if (result != null && !silent)
    WriteResponce(result.ToString());

Cast the dynamic to object to avoid the DLR (dynamic language runtime) try bind the ToString method to its (real) dynamic class type.

ScriptEngine rubyEngine;
//...
dynamic execution_result = rubyEngine.Execute(script, scope);

object result = execution_result as object;
if (result != null && !silent)
    WriteResponce(result.ToString());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文