刚才在BBS中看到有人提这样一个问题.其实很早以前自己也有这样的想法.不过当时只是看了一下反射的类库,发觉实现不了,就作罢了.现在想想这个问题其实也简单,就是利用调用堆栈来获取这些信息.利用调用堆栈可以获取很多有用的信息.
由于代码比较简单,所以也不多说了:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Reflection;
using System.Diagnostics;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MyTest t = new MyTest();
t.add(1);
}
}
public class MyTest
{
public void add(int i)
{
i++;
StackTrace ss = new StackTrace(true);
Type t = ss.GetFrame(1).GetMethod().DeclaringType;
MessageBox.Show(t.FullName);
}
}
}