全局方法?

发布于 2024-11-17 02:19:18 字数 268 浏览 1 评论 0原文

此 MSDN 页面提到了全局方法一个模块。

Module.GetMethods“返回模块上定义的全局方法。”

我不知道有全局方法。我唯一能想到的是,这只适用于允许全局方法的语言,即C++,但这不适用于C#。

这个 MSDN 页面讨论的“全局方法”是什么?

This MSDN page mentions global methods in a module.

Module.GetMethods "returns the global methods defined on the module."

I wasn't aware there were global methods. The only thing I can think of is that this only applies to languages that allow global methods, i.e. C++, but that this doesn't not apply to C#.

What are these "global methods" that this MSDN page is talking about?

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

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

发布评论

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

评论(2

烟花肆意 2024-11-24 02:19:18

这是我之前发表的评论:

我不确定,但我认为您给出的 MSDN 链接指的是在 VB.Net 下创建的模块,并且全局方法是在这些模块下创建的

正如评论中提到的,这里是如何创建模块的方法在 VB.Net 中并在这些模块下创建全局函数...

http://www.homeandlearn.co.uk/net/nets9p7.html

http://www.mka-soft.com/vbnet-tutorial/25-vbnet-tutorial-16-module

This is the comment I placed earlier:

I am not sure, but I think the MSDN link you've given is referring to the Modules that are created under VB.Net and global methods are created under those modules

As mentioned in comments, here is the way, how you would create modules in VB.Net and create global functions under those modules...

http://www.homeandlearn.co.uk/net/nets9p7.html

OR

http://www.mka-soft.com/vbnet-tutorial/25-vbnet-tutorial-16-module

在巴黎塔顶看东京樱花 2024-11-24 02:19:18

好吧,我应该继续读这本书......

对于最初使用支持模块概念的语言(例如 Visual Basic)编写的程序集,Module 类还支持 GetFieldGetFields、GetMethodGetMethods 方法。在这些类型的模块中,字段和方法可以直接附加到模块。


Ok I should have continued reading the book ...

For assemblies originally written in languages that support the notion of modules (for example, Visual Basic), the Module class also supports GetField, GetFields, GetMethod, and GetMethods methods. In those types of modules, fields and methods can be attached directly to a module.

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