Constant DateTime in C#(C# 中的常量日期时间)
问题描述
我想在属性参数中放置一个恒定的日期时间,我如何制作一个恒定的日期时间?它与 EntLib 验证应用程序块的 ValidationAttribute 相关,但也适用于其他属性.
I would like to put a constant date time in an attribute parameter, how do i make a constant datetime? It's related to a ValidationAttribute of the EntLib Validation Application Block but applies to other attributes as well.
当我这样做时:
private DateTime _lowerbound = new DateTime(2011, 1, 1);
[DateTimeRangeValidator(_lowerbound)]
我会得到:
An object reference is required for the non-static field, method, or property _lowerbound
通过这样做
private const DateTime _lowerbound = new DateTime(2011, 1, 1);
[DateTimeRangeValidator(_lowerbound)]
我会得到:
类型System.DateTime"不能声明为 const
The type 'System.DateTime' cannot be declared const
有什么想法吗?走这条路并不可取:
Any ideas? Going this way is not preferable:
[DateTimeRangeValidator("01-01-2011")]
推荐答案
我一直读到的解决方案是要么走字符串的路线,要么将日/月/年作为三个单独的参数传递,如C# 目前不支持 DateTime 文字值.
The solution I've always read about is to either go the route of a string, or pass in the day/month/year as three separate parameters, as C# does not currently support a DateTime literal value.
这是一个简单的例子,它可以让您将三个 int 类型的参数或 string 类型的参数传递给属性:
Here is a simple example that will let you pass in either three parameters of type int, or a string into the attribute:
public class SomeDateTimeAttribute : Attribute
{
private DateTime _date;
public SomeDateTimeAttribute(int year, int month, int day)
{
_date = new DateTime(year, month, day);
}
public SomeDateTimeAttribute(string date)
{
_date = DateTime.Parse(date);
}
public DateTime Date
{
get { return _date; }
}
public bool IsAfterToday()
{
return this.Date > DateTime.Today;
}
}
这篇关于C# 中的常量日期时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# 中的常量日期时间
基础教程推荐
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- WPF 模态进度窗口 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
