欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在.NET中取得代码行数的方法

程序员文章站 2024-03-31 12:24:22
文章目的 介绍在.net中取得代码行数的方法 代码 复制代码 代码如下: [stathread] static void main(string[] args) { rep...
文章目的

介绍在.net中取得代码行数的方法

代码
复制代码 代码如下:

[stathread]
static void main(string[] args)
{
reporterror("yay!");
}

static private void reporterror(string message)
{
stackframe callstack = new stackframe(1, true);
console.write("error: " + message + ", file: " + callstack.getfilename() + ", line: " + callstack.getfilelinenumber());
}

stackframe(int32, boolean) 初始化与当前堆栈帧之上的帧对应的 stackframe 类的新实例,可以选择捕获源信息。

getfilename :获取包含所执行代码的文件名。 该信息通常从可执行文件的调试符号中提取。

getmethod :获取在其中执行帧的方法。

getfilelinenumber :获取文件中包含所执行代码的行号。 该信息通常从可执行文件的调试符号中提取。

利用exception(例外)的stacktrace类
复制代码 代码如下:

try
{
throw new exception();
}
catch (exception ex)
{
// get stack trace for the exception with source file information
var st = new stacktrace(ex, true);
// get the top stack frame
var frame = st.getframe(0);
// get the line number from the stack frame
var line = frame.getfilelinenumber();
}

.net4.5 新方法
复制代码 代码如下:

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 + ")");
}