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

◆ ParseExact() [3/5]

static DateTimeOffset System.DateTimeOffset.ParseExact ( string input,
string format,
IFormatProvider? formatProvider )
inlinestatic

Definition at line 381 of file DateTimeOffset.cs.

382 {
383 if (input == null)
384 {
385 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.input);
386 }
387 if (format == null)
388 {
389 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.format);
390 }
392 }
static DateTimeOffset ParseExact(string input, string format, IFormatProvider? formatProvider)

References System.Runtime.Serialization.Dictionary, System.format, System.input, System.DateTimeOffset.ParseExact(), and System.ThrowHelper.ThrowArgumentNullException().

Referenced by System.DateTimeOffset.ParseExact(), System.Xml.XmlConvert.ToDateTimeOffset(), and System.Xml.XmlConvert.ToDateTimeOffset().