12

如何按类型查找 .cs 文件的路径?

功能原型:

string FindPath(Type);

返回类似“C:\Projects\.....\MyClass.cs”的内容

4

4 回答 4

29

在 .Net 4.5 中,您可以使用CallerFilePath反射属性(来自 MSDN):

// using System.Runtime.CompilerServices 
// using System.Diagnostics; 

public void DoProcessing()
{
    TraceMessage("Something happened.");
}

public void TraceMessage(string message,
        [CallerMemberName] string memberName = "",
        [CallerFilePath] string sourceFilePath = "",
        [CallerLineNumber] int sourceLineNumber = 0)
{
    Trace.WriteLine("message: " + message);
    Trace.WriteLine("member name: " + memberName);
    Trace.WriteLine("source file path: " + sourceFilePath);
    Trace.WriteLine("source line number: " + sourceLineNumber);
}

// Sample Output: 
//  message: Something happened. 
//  member name: DoProcessing 
//  source file path: c:\Users\username\Documents\Visual Studio 2012\Projects\CallerInfoCS\CallerInfoCS\Form1.cs 
//  source line number: 31

请参阅:http: //msdn.microsoft.com/en-us/library/system.runtime.compilerservices.callerfilepathattribute (v=vs.110).aspx

于 2014-03-03T14:04:25.367 回答
6

这是不可能的,没有这样的关系。一个类可以是部分的,因此它甚至可以来自多个不同的源文件。

于 2012-06-09T10:21:35.623 回答
3

所有类都在程序集(.exe 或 .dll)中编译。我不认为您可以获得类的源文件的路径,因为该类甚至可能不存在(如果您已将 .exe 文件复制到另一台机器)。

但是您可以获得当前正在运行的程序集(.exe 文件)的路径。查看此答案:获取程序集路径 C#

string file = (new System.Uri(Assembly.GetExecutingAssembly().CodeBase)).AbsolutePath;
于 2012-06-09T10:09:40.853 回答
0

如果您在 Visual Studio 中查看,我们可以使用“Go to Defenition 或 F12”直接跳转到特定类型的源代码,我相信这是通过使用 Workspace API 实现的,深入挖掘 Workspace API 功能可能会发现一些解决方案。

此处的文档链接:工作区

于 2020-11-18T19:53:25.140 回答