namespace ConsoleApp1; public static class PathExtension { public static string ToUnixPath(this string path) { return path.Replace(@"\", "/"); } }