Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
LongDatePattern
string
System.Globalization.DateTimeFormatInfo.LongDatePattern
get
set
Definition at line
357
of file
DateTimeFormatInfo.cs
.
358
{
359
get
360
{
361
return
longDatePattern
?? (
longDatePattern
=
UnclonedLongDatePatterns
[0]);
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
}
373
longDatePattern
=
value
;
374
OnLongDatePatternChanged
();
375
}
376
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Globalization.DateTimeFormatInfo.longDatePattern
string longDatePattern
Definition
DateTimeFormatInfo.cs:77
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.ExceptionArgument.value
@ value
System
Globalization
DateTimeFormatInfo
Generated by
1.10.0