Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3487990
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T11:12:59+00:00 2026-05-18T11:12:59+00:00

I would like to know if it’s possible to retrieve the .cs file that

  • 0

I would like to know if it’s possible to retrieve the .cs file that contains a certain class at runtime.

Ex. I have the “Type” that represents my class (public class Foo) and from that, I would like to retrieve the path to its parent file (“c:\foo.cs”).

Thanks

Edit: The purpose of this would be to show some classes’ name to the user in a ListView (populated programmatically) for example and when he double clicks on one of the ListViewItem, it opens the .cs file that contains the class in question.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T11:13:00+00:00Added an answer on May 18, 2026 at 11:13 am

    It is possible, but there is no ‘magic’ way that I know of. You’ll have to add a method to every type you want to support this. Also it will only work if the .pdb file is available. _GetSourceFileName returns null without it.

    using System;
    using System.Reflection;
    
    class Program
    {
        static void Main(string[] args)
        {
            DumpFilenameForType(typeof(A));
            DumpFilenameForType(typeof(B));
    
            if (System.Diagnostics.Debugger.IsAttached)
            {
                System.Console.Write("Press any key to continue . . . ");
                System.Console.ReadKey();
            }
        }
    
        static void DumpFilenameForType(Type t)
        {
            MethodInfo mi = t.GetMethod("_GetSourceFileName", BindingFlags.Static | BindingFlags.NonPublic);
            if (mi != null)
                Console.WriteLine("Type '{0}' is located in '{1}'", t.FullName, mi.Invoke(null, null));
            else
                Console.WriteLine("Type '{0}' does not provide method _GetSourceFileName", t.FullName);
        }
    }
    

    // Some other file

    public class A
    {
        static string _GetSourceFileName()
        {
            return new System.Diagnostics.StackTrace(true).GetFrame(0).GetFileName();
        }
    }
    

    // Yet another other file

    public class B
    {
        static string _GetSourceFileName()
        {
            return new System.Diagnostics.StackTrace(true).GetFrame(0).GetFileName();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like know the limit of maximum number of rows that can be
I would like know what is the best possible way to implement transactions with
i would like to know if is it possible to use the alarm of
i would like know how to build a rss feed that is evergoing using
I would like to know a way to actually make the status bar that
I would like to know if it's possible to keep another element open upon
I would like to know whether it is possible to use a SELECT statement
I would like to know if it is possible in python to raise an
I would like to know if I can open 2 different diagrams using MS
I would like to know which dependency described in my pom.xml brings a transitive

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.