如何使用VBA读取所有方法

发布于 2024-12-10 20:30:28 字数 207 浏览 0 评论 0原文

我想使用 VBA 宏读取 cs 文件的所有方法以及当前光标位置的方法。

假设我从特定行调用宏,那么该宏应该返回该所选位置的方法名称。

10: void test()
11: {
12: 
13:
14: }

因此,在上面的代码中,如果我从第 10 行到第 14 行调用宏,我应该得到“test”(方法名称)作为结果。

I want to read all methods as well as the methods for current cursor location of a cs file using VBA macro.

Suppose I call macro from a specific line, then that macro should return me the method name for that selected position.

10: void test()
11: {
12: 
13:
14: }

So in the above code, if I call macro from line 10 to 14, I should get "test" (method name) as result.

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

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

发布评论

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

评论(1

感悟人生的甜 2024-12-17 20:30:28

您可以使用转换器(您可以找到很多)以及 sub 和 function Mean 方法等关键字将 C# 代码转换为 Visual Basic 代码。希望这有帮助。

You can convert C# code to Visual Basic code using a converter (you can find plenty) and keywords like sub and function mean methods. Hope this helps.

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