Files
CarbonLib/Helper.cs
Francisco Salas 03f2b95e53
All checks were successful
FarmMaps.Develop/CarbonLib/pipeline/head This commit looks good
aw7152: make lib open source, remove farmmaps dependencies
2025-12-09 10:02:31 +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);
}
}
}