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

◆ ParseExact() [5/6]

static TimeSpan System.TimeSpan.ParseExact ( string input,
string[] formats,
IFormatProvider? formatProvider )
inlinestatic

Definition at line 337 of file TimeSpan.cs.

338 {
339 if (input == null)
340 {
341 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.input);
342 }
343 return TimeSpanParse.ParseExactMultiple(input, formats, formatProvider, TimeSpanStyles.None);
344 }
static TimeSpan ParseExactMultiple(ReadOnlySpan< char > input, string[] formats, IFormatProvider formatProvider, TimeSpanStyles styles)

References System.formats, System.input, System.Globalization.TimeSpanParse.ParseExactMultiple(), and System.ThrowHelper.ThrowArgumentNullException().