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

◆ Parse()

static TimeSpan System.Globalization.TimeSpanParse.Parse ( ReadOnlySpan< char > input,
IFormatProvider formatProvider )
inlinestaticpackage

Definition at line 717 of file TimeSpanParse.cs.

718 {
719 TimeSpanResult result = new TimeSpanResult(throwOnFailure: true, input);
720 bool flag = TryParseTimeSpan(input, TimeSpanStandardStyles.Any, formatProvider, ref result);
721 return result.parsedTimeSpan;
722 }
static bool TryParseTimeSpan(ReadOnlySpan< char > input, TimeSpanStandardStyles style, IFormatProvider formatProvider, ref TimeSpanResult result)

References System.input, System.Globalization.TimeSpanParse.TimeSpanResult.parsedTimeSpan, and System.Globalization.TimeSpanParse.TryParseTimeSpan().

Referenced by System.TimeSpan.Parse(), System.TimeSpan.Parse(), and System.TimeSpan.Parse().