• StackTrace
        public  static void LogWrite(string logInfo,
            [CallerFilePath] string file=null,
            [CallerLineNumber] int  line=0,
            [CallerMemberName] string member=null
            )
        {
            Console.WriteLine(logInfo);
            Console.WriteLine(file);
            Console.WriteLine(line);
            Console.WriteLine(member);

        }

https://www.codeproject.com/Tips/606379/Caller-Info-Attributes-in-Csharp-5-0

相关文章:

  • 2021-07-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-04
  • 2021-10-28
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-28
  • 2021-04-18
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案