我目前正在使用内置的TraceListener开发应用程序日志库。这个库将在许多项目中使用,并且应该提供一个简单的界面,我只需要关心将什么内容写入日志文件,而不是如何。
通过使用反射命名空间,我可以找出当前称为日志函数的应用程序(检索执行程序集名称),但我还想要调用日志记录函数的函数和类的名称。
让我说我有:
public static void LogInfo(string vLogText) {
Trace.WriteLine(
MethodInfo.GetCurrentMethod().Name
+ this.GetType().ToString() + vLogText);
}
当我从另一个项目调用时(类:TestClass,方法:TestMethod)
Tracer.LogInfo("log this!")
我希望在日志中看到:
TestClass, TestMethod, log this!
但我得到了
TracerClass, LogInfo, log this!
如何获取父方法和类名?
答案 0 :(得分:38)
最新的C#和VS 2012附带Caller Information(即CallerFilePathAttribute
,CallerLineNumberAttribute
和CallerMemberNameAttribute
),如果您只能使用它,它将为您提供帮助。
如果你不能,你必须参考其他答案。
答案 1 :(得分:25)
尝试做这样的事情:
var mth = new StackTrace().GetFrame(1).GetMethod();
var cls = mth.ReflectedType.Name;
// where 1 illustrates how deep into the stack to reflect.
C#5.0>中有更多优雅的解决方案,但是如果您使用的是较旧的框架,以上内容将有所帮助。
答案 2 :(得分:2)
您可以使用Environment.StackTrace
记录完整堆栈跟踪,而不仅仅是调用方法。如果您想使用相同的日志记录结构来记录异常,这可能会有所帮助。
有关详细信息,请参阅this msdn page。