Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
LongTimePattern
string
System.Globalization.DateTimeFormatInfo.LongTimePattern
get
set
Definition at line
378
of file
DateTimeFormatInfo.cs
.
379
{
380
get
381
{
382
return
longTimePattern
?? (
longTimePattern
=
UnclonedLongTimePatterns
[0]);
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
}
394
longTimePattern
=
value
;
395
OnLongTimePatternChanged
();
396
}
397
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Globalization.DateTimeFormatInfo.longTimePattern
string longTimePattern
Definition
DateTimeFormatInfo.cs:83
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.ExceptionArgument.value
@ value
System
Globalization
DateTimeFormatInfo
Generated by
1.10.0