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

◆ IsPathFullyQualified() [2/2]

static bool System.IO.Path.IsPathFullyQualified ( string path)
inlinestatic

Definition at line 264 of file Path.cs.

265 {
266 if (path == null)
267 {
268 throw new ArgumentNullException("path");
269 }
270 return IsPathFullyQualified(path.AsSpan());
271 }
static bool IsPathFullyQualified(string path)
Definition Path.cs:264

References System.IO.Path.IsPathFullyQualified().

Referenced by System.IO.Path.GetFullPath(), System.Diagnostics.FileVersionInfo.GetVersionInfo(), System.IO.Path.IsPathFullyQualified(), System.StartupHookProvider.ProcessStartupHooks(), and System.Runtime.Loader.AssemblyDependencyResolver.ResolveUnmanagedDllToPath().