Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ MonthDayPattern

string System.Globalization.DateTimeFormatInfo.MonthDayPattern
getset

Definition at line 399 of file DateTimeFormatInfo.cs.

400 {
401 get
402 {
403 if (monthDayPattern == null)
404 {
406 }
407 return monthDayPattern;
408 }
409 set
410 {
411 if (IsReadOnly)
412 {
413 throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
414 }
415 if (value == null)
416 {
417 throw new ArgumentNullException("value");
418 }
420 }
421 }
virtual CalendarId ID
Definition Calendar.cs:19
string MonthDay(CalendarId calendarId)

Referenced by System.DateTimeParse.GetDayOfMN(), System.DateTimeParse.GetDayOfNM(), System.DateTimeParse.GetDayOfNN(), and System.DateTimeParse.GetHebrewDayOfNM().