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

◆ LongTimePattern

string System.Globalization.DateTimeFormatInfo.LongTimePattern
getset

Definition at line 378 of file DateTimeFormatInfo.cs.

379 {
380 get
381 {
383 }
384 set
385 {
386 if (IsReadOnly)
387 {
388 throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
389 }
390 if (value == null)
391 {
392 throw new ArgumentNullException("value");
393 }
396 }
397 }