Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CalendarWeekRule
CalendarWeekRule
System.Globalization.DateTimeFormatInfo.CalendarWeekRule
get
set
Definition at line
313
of file
DateTimeFormatInfo.cs
.
314
{
315
get
316
{
317
if
(
calendarWeekRule
== -1)
318
{
319
calendarWeekRule
=
_cultureData
.
CalendarWeekRule
;
320
}
321
return
(
CalendarWeekRule
)
calendarWeekRule
;
322
}
323
set
324
{
325
if
(IsReadOnly)
326
{
327
throw
new
InvalidOperationException
(SR.InvalidOperation_ReadOnly);
328
}
329
if
(
value < CalendarWeekRule.FirstDay || value >
CalendarWeekRule
.FirstFourDayWeek)
330
{
331
throw
new
ArgumentOutOfRangeException(
"value"
,
value
, SR.Format(SR.ArgumentOutOfRange_Range,
CalendarWeekRule
.FirstDay,
CalendarWeekRule
.FirstFourDayWeek));
332
}
333
calendarWeekRule
= (int)
value
;
334
}
335
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Globalization.CultureData.CalendarWeekRule
int CalendarWeekRule
Definition
CultureData.cs:831
System.Globalization.DateTimeFormatInfo._cultureData
readonly CultureData _cultureData
Definition
DateTimeFormatInfo.cs:27
System.Globalization.DateTimeFormatInfo.CalendarWeekRule
CalendarWeekRule CalendarWeekRule
Definition
DateTimeFormatInfo.cs:314
System.Globalization.DateTimeFormatInfo.calendarWeekRule
int calendarWeekRule
Definition
DateTimeFormatInfo.cs:57
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.ExceptionArgument.value
@ value
System
Globalization
DateTimeFormatInfo
Generated by
1.10.0