是否有 Getproperty 或等效函数?

发布于 2024-09-03 17:53:46 字数 210 浏览 4 评论 0原文

我想知道是否有类似这样的伪代码:

myVar = "函数名称"
调用 someObject.(myVar 评估)

相当于:

调用 someObject.functionName

在 VB 中是可能的。我知道这是在其他一些语言中使用 GetProperty 方法完成的。

I would like to know if something like this pseudo code:


myVar = "functionName"
call someObject.(myVar evaluation)

which would then be equivalent to:


call someObject.functionName

is possible in VB. I know this is done in some other languages using a GetProperty method.

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

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

发布评论

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

评论(1

も星光 2024-09-10 17:53:48

您可以尝试使用 CallByName 方法来完成此操作。 VB/VBA中还有Eval函数。

以下是 VB.Net 中的代码:

CallByName(YourClassName, "variableName", CallType.SET, valueToSet)

您甚至可以使用属性的字符串名称来读取属性:

someVariable = CallByName(YourClassName, "variableName", CallType.GET)

You can try the CallByName method to accomplish this. There is also an Eval function in VB/VBA.

Here's the code for that in VB.Net:

CallByName(YourClassName, "variableName", CallType.SET, valueToSet)

You can even read property using it's string-name:

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