gpt4 book ai didi

c# - 在 RangeAttribute 中提供非常量值?

转载 作者:太空狗 更新时间:2023-10-30 00:12:28 25 4
gpt4 key购买 nike

当我执行以下操作时:

`[Range(1910, DateTime.Now.Year)]  
public int Year { get; set; }`

我收到以下错误:

属性参数必须是属性参数类型的常量表达式、typeof 表达式或数组创建表达式

有什么想法吗?

最佳答案

您可以为此构建一个自定义属性,例如 RangeYearToCurrent,您可以在其中指定当前年份

public class RangeYearToCurrent : RangeAttribute
{
public RangYearToCurrent(int from)
: base(typeof(int), from, DateTime.Today.Year) { }
}

未经测试...

关于c# - 在 RangeAttribute 中提供非常量值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4890310/

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