检索代码中的当前行号
如果您正在使用代码并想知道当前正在执行哪个行号,有一个适合您的解决方案。
您可以使用 .NET 4.5 / C# 中编译器的帮助来完成此任务5. 具体方法如下:
using System.Runtime.CompilerServices; static void SomeMethodSomewhere() { ShowMessage("Boo"); }
static void ShowMessage(string message, [CallerLineNumber] int lineNumber = 0, [CallerMemberName] string caller = null) { MessageBox.Show(message + " at line " + lineNumber + " (" + caller + ")"); }
SomeMethodSomewhere();
输出将显示,例如:
Boo at line 39 (SomeMethodSomewhere)
另外,如果需要原始代码文件的路径,[CallerFilePath]属性可以提供信息。
以上是如何获取 C# 代码中的当前行号?的详细内容。更多信息请关注PHP中文网其他相关文章!