C#中如何获取当前正在执行的代码所在的函数(方法)的名字和参数等信息?

 我来答
跳出海的鱼
2015-06-13 · 知道合伙人教育行家
跳出海的鱼
知道合伙人教育行家
采纳数:3064 获赞数:24168
重庆交通大学学生

向TA提问 私信TA
展开全部
public static string GetMethodName()
{
var method = new StackFrame(1).GetMethod(); // 这里忽略1层堆栈,也就忽略了当前方法GetMethodName,这液胡样拿到的就正好是外部调用GetMethodName的方法信息
var property = (
from p in method.DeclaringType.GetProperties(
BindingFlags.Instance |
BindingFlags.Static |
BindingFlags.Public |
BindingFlags.NonPublic)
where p.GetGetMethod(true) == method || p.GetSetMethod(true) == method
select p).FirstOrDefault();
return property == null ? method.Name : property.Name;
}
【补充】:其他方法
得到函数名:
System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace();
this.Text = st.GetFrame(0).ToString();
得到代码行,源代银旦码文闹搏拦件名:
StackTrace st = new StackTrace(new StackFrame(true));
Console.WriteLine(" Stack trace for current level: {0}", st.ToString());
StackFrame sf = st.GetFrame(0);
Console.WriteLine(" File: {0}", sf.GetFileName());
Console.WriteLine(" Method: {0}", sf.GetMethod().Name);
Console.WriteLine(" Line Number: {0}", sf.GetFileLineNumber());
Console.WriteLine(" Column Number: {0}", sf.GetFileColumnNumber());
匿名用户
2013-06-28
展开全部
在拆世槐你想要知道的函数开始时新增断点,然后运行程序,就进旅友入了调试,F10是逐步执行,你的IDE下面会返橡有调试窗口,可以看到各个信息
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友3b54460
2013-08-23
知道答主
回答量:5
采纳率:33%
帮助的人:5352
展开全部
public static string GetMethodName()
{
var method = new StackFrame(1).GetMethod(); // 这里忽略1层堆丛兆栈,也腊郑谨就忽略了当前方法GetMethodName,这样拿到的就正好是外部轮基调用GetMethodName的方法信息
var property = (
from p in method.DeclaringType.GetProperties(
BindingFlags.Instance |
BindingFlags.Static |
BindingFlags.Public |
BindingFlags.NonPublic)
where p.GetGetMethod(true) == method || p.GetSetMethod(true) == method
select p).FirstOrDefault();
return property == null ? method.Name : property.Name;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-06-28
展开全部
messageBox。Show()
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式