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

◆ Parse() [3/5]

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

Definition at line 310 of file TimeSpan.cs.

311 {
312 if (input == null)
313 {
314 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.input);
315 }
316 return TimeSpanParse.Parse(input, formatProvider);
317 }
static TimeSpan Parse(ReadOnlySpan< char > input, IFormatProvider formatProvider)

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