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

◆ FullDateTimePattern

string System.Globalization.DateTimeFormatInfo.FullDateTimePattern
getset

Definition at line 337 of file DateTimeFormatInfo.cs.

338 {
339 get
340 {
342 }
343 set
344 {
345 if (IsReadOnly)
346 {
347 throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
348 }
349 if (value == null)
350 {
351 throw new ArgumentNullException("value");
352 }
354 }
355 }