הנה קוד להצגת תאריך עברי (מבוסס על המאמר כאן):
DateTime TodayDate = DateTime.Now;
System.Globalization.CultureInfo CultureInfo_ =
System.Globalization.CultureInfo.CreateSpecificCulture("he-IL");
CultureInfo_.DateTimeFormat.Calendar =
new System.Globalization.HebrewCalendar();
MessageBox.Show(TodayDate.ToString("dd MMMM y", CultureInfo_));
Read more: Dudi Nissan's Blog
0 comments:
Post a Comment