Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
TryParse()
[2/8]
static
bool
System.DateOnly.TryParse
(
[NotNullWhen(true)]
string
?
s
,
IFormatProvider
?
provider
,
DateTimeStyles
style
,
out
DateOnly
result
)
inline
static
Definition at line
399
of file
DateOnly.cs
.
400
{
401
if
(
s
==
null
)
402
{
403
result =
default
(
DateOnly
);
404
return
false
;
405
}
406
return
TryParse
(
s
.AsSpan(), provider, style, out result);
407
}
System.ExceptionArgument.s
@ s
System.DateOnly.TryParse
static bool TryParse(ReadOnlySpan< char > s, out DateOnly result)
Definition
DateOnly.cs:257
System.DateOnly.DateOnly
DateOnly(int dayNumber)
Definition
DateOnly.cs:43
References
System.s
, and
System.DateOnly.TryParse()
.
System
DateOnly
Generated by
1.10.0