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

◆ HasExtension() [1/2]

static bool System.IO.Path.HasExtension ( [NotNullWhen(true)] string? path)
inlinestatic

Definition at line 278 of file Path.cs.

279 {
280 if (path != null)
281 {
282 return HasExtension(path.AsSpan());
283 }
284 return false;
285 }
static bool HasExtension([NotNullWhen(true)] string? path)
Definition Path.cs:278

References System.IO.Path.HasExtension().

Referenced by System.IO.Path.HasExtension().