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

◆ PMDesignator

string System.Globalization.DateTimeFormatInfo.PMDesignator
getset

Definition at line 423 of file DateTimeFormatInfo.cs.

424 {
425 get
426 {
427 if (pmDesignator == null)
428 {
430 }
431 return pmDesignator;
432 }
433 set
434 {
435 if (IsReadOnly)
436 {
437 throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
438 }
439 if (value == null)
440 {
441 throw new ArgumentNullException("value");
442 }
445 }
446 }

Referenced by System.DateTimeParse.AdjustTimeMark(), System.DateTimeParse.MatchAbbreviatedTimeMark(), and System.DateTimeParse.MatchTimeMark().