当前位置:  开发笔记 > 后端 > 正文

是否可以在VB.NET中获取引用方法?

如何解决《是否可以在VB.NET中获取引用方法?》经验,为你挑选了2个好方法。

看这个例子:

''//file1.vb
Sub Something()
    ''//...
    Functions.LogInfo("some text")
    ''//...
End Sub

''//functions.vb
Sub LogInfo(ByVal entry as String)

    Console.WriteLine(entry)

End Sub

我可以在LogInfo中获得名称"Something"吗?

对于这篇文章的简要说明,我不知道如何恰当地表达这个问题.我会根据需要澄清和阐述.



1> Jon Skeet..:

(编辑:删除了不必要的使用StackTrace本身 - 如果你想要打印的信息不仅仅是一帧,这将非常有用.)

您可以使用StackFrame该类,但它相当昂贵(IIRC)并且可能由于内联而略微不正确.

编辑:这样的事情:( NoInlining是为了确保它的行为正常......)

Imports System.Diagnostics
Imports System.Runtime.CompilerServices

Public Class Test

    Shared Sub Main()
        Something()
    End Sub        

     _
    Shared Sub Something()        
        Functions.LogInfo("some text")
    End Sub

End Class

Public Class Functions

     _
    Public Shared Sub LogInfo (ByVal entry as String)
        Dim frame as StackFrame = new StackFrame(1, False)
        Console.WriteLine("{0}: {1}", _
                          frame.GetMethod.Name, _
                          entry)
    End Sub

End Class



2> Quintin Robi..:

看看如何找到调用当前方法的方法?.

转换为VB(希望):

Imports System.Diagnostics
''// get call stack
Dim stackTrace As New StackTrace()

''// get calling method name
Console.WriteLine(stackTrace.GetFrame(1).GetMethod().Name)

推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有