gpt4 book ai didi

c# - 自动属性值和默认值

转载 作者:太空狗 更新时间:2023-10-29 18:02:47 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
How do you give a C# Auto-Property a default value?

我在这样的类中有一个属性

public String fontWeight { get; set; }

我希望它的默认值是 "Normal"

有没有办法以“自动”风格而不是以下方式做到这一点

public String fontWeight {
get { return fontWeight; }
set { if (value!=null) { fontWeight = value; } else { fontWeight = "Normal"; } }
}

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