本文介绍了行号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何获得C-Sharp中的行号?对于登录目的,我想记录
错误发生的行号?
问候,
R.Baskar
Hi,
How to Get a Line Number in C-Sharp? For Loging purpose , i want to log
the Line no where the Error Happens?
Regards,
R.Baskar
推荐答案
Release-Build没有解决方案。
对于Debug Build,您可以使用StackFrame-Class,如下所示:
< code>
系统.Diagnostics.StackFrame sf = new System.Diagnostics.StackFrame(true);
MessageBox.Show(sf.ToString());
//或sf.GetFileLineNumber( );
< / code>
发布 - 构建在运行时不支持行信息。
-
问候
Jochen
你需要一个内存泄漏查找器吗?
这篇关于行号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!