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

◆ ToDateTime() [14/18]

static DateTime System.Convert.ToDateTime ( string? value)
inlinestatic

Definition at line 2234 of file Convert.cs.

2235 {
2236 if (value == null)
2237 {
2238 return new DateTime(0L);
2239 }
2240 return DateTime.Parse(value);
2241 }

References System.DateTime, System.L, System.DateTime.Parse(), and System.value.