c#调用lib_数据库source命令

(3) 2024-06-13 21:12

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
c#调用lib_数据库source命令,希望能够帮助你!!!。

一般用下面的方法处理:

/// <summary> /// 获取调用链上的方法 /// </summary> /// <param name="depth">回朔深度</param> public static MethodBase GetCurrentMethod(int depth) { try { System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace(); return st.GetFrame(depth).GetMethod(); } catch { return null; } }

具体的调用回溯怎么理解请看下面的小demo:

static void Main(string[] args) { method1(); Console.ReadKey(); } static void method1() { method2(); Console.ReadLine(); } static void method2() { System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace(true); Console.WriteLine(st.GetFrame(2).GetMethod().Name.ToString()); Console.WriteLine(st.GetFrame(1).GetMethod().Name.ToString()); Console.WriteLine(st.GetFrame(0).GetMethod().Name.ToString()); }

输出结果:

c#调用lib_数据库source命令_https://bianchenghao6.com/blog__第1张

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复