如何使用VBA读取所有方法
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用转换器(您可以找到很多)以及 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.