24 internal static string Combine(
string directoryPath,
string name)
27 if (directoryPath.Length > 0)
29 char c = directoryPath[directoryPath.Length - 1];
34 return directoryPath + Path.DirectorySeparatorChar + name;
36 return directoryPath + name;