gpt4 book ai didi

c# - 是否可以在 DebuggerDisplay 中使用条件?

转载 作者:IT王子 更新时间:2023-10-29 04:38:08 24 4
gpt4 key购买 nike

考虑以下类:

[DebuggerDisplay("{GetType().Name,nq}: FileName = {FileName,nq}")]
public class FileWrapper
{
public string FileName { get; set; }
public bool IsTempFile { get; set; }
public string TempFileName { get; set; }
}

我想添加一个基于 IsTempFileName 属性的调试器显示。当实例是临时文件时,我想添加字符串 , TempFileName = {TempFileName,nq} 。我将如何实现这一目标?

最佳答案

您可以使用 conditional operator (?:)

[DebuggerDisplay("{GetType().Name,nq}: FileName = {FileName,nq}{IsTempFile ? \", TempFileName: \" + TempFileName : System.String.Empty,nq}")]

IsTempFile == false

enter image description here


IsTempFile == true

enter image description here

关于c# - 是否可以在 DebuggerDisplay 中使用条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12892825/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com