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

◆ DateTime()

static int System.Xml.Schema.XmlSchemaInference.DateTime ( string s,
bool bDate,
bool bTime )
inlinestaticpackage

Definition at line 2372 of file XmlSchemaInference.cs.

2373 {
2374 try
2375 {
2376 XmlConvert.ToDateTime(s, XmlDateTimeSerializationMode.RoundtripKind);
2377 }
2378 catch (FormatException)
2379 {
2380 return 262144;
2381 }
2382 if (bDate && bTime)
2383 {
2384 return 278528;
2385 }
2386 if (bDate)
2387 {
2388 return 327680;
2389 }
2390 if (bTime)
2391 {
2392 return 294912;
2393 }
2394 return 262144;
2395 }

References System.s, and System.Xml.XmlConvert.ToDateTime().