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# 中的常量日期时间


- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 使用 rss + c# 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01