- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用CallerMemberName
/CallerFilePathAttribute
/CallerLineNumber
属性如何影响应用程序的性能?这是在应用程序中编译的东西,还是相关反射的东西,还是其他东西?
我计划做类似的事情:
public void DoProcessing()
{
TraceMessage("Something happened.");
}
public void TraceMessage(string message,
[System.Runtime.CompilerServices.CallerMemberName] string memberName = "",
[System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = "",
[System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
{
System.Diagnostics.Trace.WriteLine("message: " + message);
System.Diagnostics.Trace.WriteLine("member name: " + memberName);
System.Diagnostics.Trace.WriteLine("source file path: " + sourceFilePath);
System.Diagnostics.Trace.WriteLine("source line number: " + sourceLineNumber);
}
最佳答案
此属性由编译器处理,即 TraceMessage("Something gone.");
将被编译器替换为如下内容:
TraceMessage("Something happened.", "DoProcessing", "some_file_path", 6);
可以查看反编译@sharplab
Is this something that gets compiled in the application
是的
or something related reflection, or something else?
不,没有反射。
关于c# - CallerMemberName/CallerFilePathAttribute/CallerLineNumber 对性能的影响,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76968517/
使用CallerMemberName/CallerFilePathAttribute/CallerLineNumber属性如何影响应用程序的性能?这是在应用程序中编译的东西,还是相关反射的东西,还是其
我在 netcore2.1 网络应用程序中有以下方法: public static void Information(string message, [CallerFilePath] string f
我是一名优秀的程序员,十分优秀!