9 lines
167 B
C#
9 lines
167 B
C#
namespace ConsoleApp1;
|
|
|
|
public static class PathExtension
|
|
{
|
|
public static string ToUnixPath(this string path)
|
|
{
|
|
return path.Replace(@"\", "/");
|
|
}
|
|
} |