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

◆ DateSeparator

string System.Globalization.DateTimeFormatInfo.DateSeparator
getset

Definition at line 264 of file DateTimeFormatInfo.cs.

265 {
266 get
267 {
268 if (dateSeparator == null)
269 {
271 }
272 return dateSeparator;
273 }
274 set
275 {
276 if (IsReadOnly)
277 {
278 throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
279 }
280 if (value == null)
281 {
282 throw new ArgumentNullException("value");
283 }
286 }
287 }
virtual CalendarId ID
Definition Calendar.cs:19
string DateSeparator(CalendarId calendarId)

Referenced by System.DateTimeParse.ParseByFormat(), and System.DateTimeParse.TryParse().