zoukankan
html css js c++ java
(论坛答疑点滴)如何得知调用当前方法的方法名?
using
System;
using
System.Diagnostics;
namespace
StackTraceTest
{
/**/
///
<summary>
///
Class1 的摘要说明。
///
</summary>
class
Class1
{
/**/
///
<summary>
///
应用程序的主入口点。
///
</summary>
[STAThread]
static
void
Main(
string
[] args)
{
method2();
//
输出method2
}
static
private
void
method1()
{
StackTrace st
=
new
StackTrace(
true
);
Console.WriteLine(st.GetFrame(
1
).GetMethod().Name.ToString());
}
static
private
void
method2()
{
method1();
Console.ReadLine();
}
}
}
欢迎大家阅读我的极客时间专栏
《Java业务开发常见错误100例》
【全面避坑+最佳实践=健壮代码】
查看全文
相关阅读:
avalon随笔
ms-attr-data-real-gold="{{page_data[0].gold}}" 属性付真
jQuery 快捷操作
jQuery 属性操作
jQuery 表单域选中选择器
jQuery 层次选择器
jQuery 基本选择器
jQuery 基本使用
jQuery 引入多个库文件冲突
BOM window对象方法
原文地址:https://www.cnblogs.com/lovecherry/p/135175.html
最新文章
线程和进程的知识点
数组
运算符 流程控制
数据类型 变量
设计模式——代理模式
设计模式——单利模式
网页文件下载
简单的webservice
poi导入导出
CXF 开发 WebService
热门文章
java执行windows 的cmd 命令
js中setInterval与setTimeout用法
Spring注解@Component、@Repository、@Service、@Controller区别
Spring @Resource注解
java集群
Velocity
连表查询
http://kindeditor.net/demo.php
移动端touch事件封装
阿里云兼容测试 http://pi.aliyun.com/multibrowsers/index.htm
Copyright © 2011-2022 走看看