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

◆ LongDatePattern

string System.Globalization.DateTimeFormatInfo.LongDatePattern
getset

Definition at line 357 of file DateTimeFormatInfo.cs.

358 {
359 get
360 {
362 }
363 set
364 {
365 if (IsReadOnly)
366 {
367 throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
368 }
369 if (value == null)
370 {
371 throw new ArgumentNullException("value");
372 }
375 }
376 }