gpt4 book ai didi

c# - Azure 存储中的默认值

转载 作者:太空宇宙 更新时间:2023-11-03 19:05:17 25 4
gpt4 key购买 nike

我正在我的 Azure 模型中定义一个属性,我想要它的默认值。我做的是这个

[DefaultValue(true)]
public Boolean SmsNotification { get; set; }

默认值仍然是 False。谁能告诉我如何解决这个问题?

最佳答案

DefaultValue attribute does not cause the initial value to be initialized with The attribute's value.它没有在代码中设置属性的实际默认值,它只是为了设计。

所以:

[DefaultValue(true)]
public bool SmsNotification
{
get { return _smsNotification; }
set { _smsNotification = value; }
}

For details see this old post.

关于c# - Azure 存储中的默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28962056/

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