本文介绍了方法内容到字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法将方法的内容作为字符串?
例如,如果我有
void myfunction()
{
MessageBox.Show( 你好跨度>);
}
string FnToString( void fn)
{
// 这里有什么????
}
void fncall()
{
MessageBox.Show(FnToString(myFunction));
}
我希望输出成为一个消息框,上面写着:MessageBox.Show(Hello);
有没有办法做到这一点?
解决方案
Is there any way to get the contents of a method as a string?
For example, if I had
void myfunction() { MessageBox.Show("Hello"); } string FnToString(void fn) { //what goes here???? } void fncall() { MessageBox.Show(FnToString(myFunction)); }
I would want output to be a messagebox that says: "MessageBox.Show("Hello");"
Is there any way to do this?
解决方案
这篇关于方法内容到字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!