Files
CarbonLib/CarbonLib/Helper.cs
Francisco Salas 0ff0a44fdb
All checks were successful
FarmMaps.Develop/CarbonLib/pipeline/head This commit looks good
aw7152: open source, moved lib to sub folder, added console app
2025-12-09 10:42:43 +01:00

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);
}
}
}