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

◆ ParseExact() [3/6]

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

Definition at line 324 of file TimeSpan.cs.

325 {
326 if (input == null)
327 {
328 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.input);
329 }
330 if (format == null)
331 {
332 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.format);
333 }
334 return TimeSpanParse.ParseExact(input, format, formatProvider, TimeSpanStyles.None);
335 }
static TimeSpan ParseExact(ReadOnlySpan< char > input, ReadOnlySpan< char > format, IFormatProvider formatProvider, TimeSpanStyles styles)

References System.format, System.input, System.Globalization.TimeSpanParse.ParseExact(), and System.ThrowHelper.ThrowArgumentNullException().