Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
TryParse()
[2/8]
static
bool
System.TimeOnly.TryParse
(
[NotNullWhen(true)]
string
?
s
,
IFormatProvider
?
provider
,
DateTimeStyles
style
,
out
TimeOnly
result
)
inline
static
Definition at line
450
of file
TimeOnly.cs
.
451
{
452
if
(
s
==
null
)
453
{
454
result =
default
(
TimeOnly
);
455
return
false
;
456
}
457
return
TryParse
(
s
.AsSpan(), provider, style, out result);
458
}
System.ExceptionArgument.s
@ s
System.TimeOnly.TimeOnly
TimeOnly(int hour, int minute)
Definition
TimeOnly.cs:31
System.TimeOnly.TryParse
static bool TryParse(ReadOnlySpan< char > s, out TimeOnly result)
Definition
TimeOnly.cs:308
References
System.s
, and
System.TimeOnly.TryParse()
.
System
TimeOnly
Generated by
1.10.0