根据当前月份,日期和工作日名称返回数据

时间:2013-03-08 05:11:41

标签: c# winforms datetime

C#,Windows窗体和Visual Studio的新手。我四处搜寻,真的不知道从哪里开始。我已经成功构建了一个简单的Windows窗体,它将使用DateTime.Today显示当天,当月,日的名称,但现在我需要弄清楚如何根据这些变量设置和存储值。我在考虑使用数组来存储数据。如果我走在正确的轨道上,有人可以告诉我。

 Array to store the Months and the data that is associated with each month
 Array to store the Weekday and the data that is associated with each weekday
 Array to store the Days and the data that is associated with each day

然后,我应该做的就是弄清楚如何拉出数组中关联的数据,然后将其设置为将显示在文本框中的变量。如果有人能指出我正确的方向,或者可能将我与一些很好的工作实例联系起来。

更新:

以下是我用来从我创建的数组中引用它所需的数据

 int cDay = DateTime.Today.Day - 1;
 int cWeekDay = (int)System.Globalization.CultureInfo.InvariantCulture.Calendar.GetDayOfWeek(DateTime.Now) - 1;
 int cMonth = DateTime.Today.Month - 1;

然后我使用

加入了数据
 months[cMonth] + weekdays[cWeekDay] + days[cDay];

我创建数组的月份,工作日,天数

0 个答案:

没有答案