VB.NET 中 CType 的 C# 等效项是什么?

发布于 2024-10-07 14:56:17 字数 276 浏览 2 评论 0原文

我正在尝试转换 MSDN 文章创建动态数据条目中提供的示例用户界面到C#,但卡在以下代码中:

CType(dq, IUIBuildingBlock).QuestionText = reader("QuestionText")

如何将上述VB.NET语句转换为C#?

I am trying to convert the example provided in MSDN article Creating Dynamic Data Entry User Interfaces to C#, but am stuck at the following code:

CType(dq, IUIBuildingBlock).QuestionText = reader("QuestionText")

How do I convert the above VB.NET statement to C#?

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

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

发布评论

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

评论(1

余生再见 2024-10-14 14:56:17

在 C# 中,您可以通过将要转换的类型放在要转换的引用变量 ((type)instance) 前面的括号内来指定转换。

因此,要将对象 (dq) 转换为 IUIBuildingBlock 类型,您可以使用以下代码:(

((IUIBuildingBlock)dq).QuestionText = reader("QuestionText");

请注意,如果转换完成,这将引发异常一个不实现 IUIBuildingBlock 的对象,但也会实现 CType,所以我认为这不是问题。)

In C#, you can specify a cast by putting the type you want to cast to in parenthesis in front of the reference variable that you want to cast ((type)instance).

So, to cast the object (dq) to the type IUIBuildingBlock, you could use the following code:

((IUIBuildingBlock)dq).QuestionText = reader("QuestionText");

(Note that this will throw an exception if the cast is done on an object that doesn't implement IUIBuildingBlock, but so will CType, so I assume that is not a problem.)

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