All checks were successful
FarmMaps.Develop/CarbonLib/pipeline/head This commit looks good
14 lines
287 B
C#
14 lines
287 B
C#
using System.IO;
|
|
|
|
namespace CarbonLib
|
|
{
|
|
public class Helper
|
|
{
|
|
public static string GetPlatformIndependentDirectoryPath(string path)
|
|
{
|
|
return path.Replace(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar);
|
|
}
|
|
|
|
}
|
|
}
|