我在Visual Studio中使用报表功能,我需要创建一个prop / variable来存储当前日期,以便我可以在我的表单上显示它。我似乎无法在报告视图中找到正确的方法。
我最初尝试了以下属性:
public DateTime CurrentDate {get;}
这不起作用,因为它没有设置器。要解决问题我:
public DateTime CurrentDate{get{return DateTime.Now;}}
感谢您的建议。他们引导我朝着正确的方向前进。
答案 0 :(得分:6)
DateTime.Now
请参阅:http://msdn.microsoft.com/en-us/library/system.datetime.now.aspx
答案 1 :(得分:1)
您可以尝试使用此代码
DateTime.Now
您可以指定格式
DateTime.Now.ToString("yourFormat")
答案 2 :(得分:1)
仅限Date
,我会使用
DateTime.Today
或
DateTime.Now.Date
答案 3 :(得分:0)
System.DateTime.Now。 获取字符串格式:
System.DateTime.Now.ToString()