/// <summary>
 /// Uses <see cref="PathGeneratorUtilities.GetRelativePath(string[])"/> to compose a
 /// platform-independent relative path a list of directories (<paramref name="dirList"/>).
 /// </summary>
 public static string R(params string[] dirList)
 {
     return(PathGeneratorUtilities.GetRelativePath(dirList));
 }
 /// <summary>
 /// Uses <see cref="PathGeneratorUtilities.GetAbsolutePath(string[])"/> to compose a
 /// platform-independent absolute path from a list of directories (<paramref name="dirList"/>).
 /// </summary>
 public static string A(params string[] dirList)
 {
     return(PathGeneratorUtilities.GetAbsolutePath(dirList));
 }