查找调用c#函数的代码的DLL名称

本文关键字:代码 名称 DLL 函数 调用 查找 | 更新日期: 2023-09-27 18:08:56

在我们所有项目中包含的框架库中,我们有一个Log函数。

框架

public static class Log
{
   GenericLog(string msg){ string caller = GETDLLNAME //implementation}
   GenericError(string msg){ string caller = GETDLLNAME //implementation}
}

在其他代码中

using Framework;
public class foo
{
    public string GenerateBar()
    {
         Log.GenericLog("FooBar");
    }
}

是否有任何方法可以确定DLL的名称。

查找调用c#函数的代码的DLL名称

看看https://msdn.microsoft.com/de-de/library/system.reflection.assembly.getcallingassembly(v=vs.110).aspx

Assembly-Class将包含您所需要的一切