Exemplo n.º 1
0
 /// <returns><see langword="true"/> iff absolute (OS-dependent)</returns>
 /// <seealso cref="IsRelative"/>
 public static bool IsAbsolute(this string path)
 {
     return(PathInternal.IsPathFullyQualified(path));
 }
Exemplo n.º 2
0
 public static bool IsPathFullyQualified(string path)
 {
     return(!PathInternal.IsPartiallyQualified(path));
 }