9 lines
233 B
C#
9 lines
233 B
C#
namespace MycroForge.CLI.Extensions;
|
|
|
|
public static class StringExtensions
|
|
{
|
|
public static string SlashesToDots(this string path) =>
|
|
path.Replace('/', '.')
|
|
.Replace('\\', '.')
|
|
.Trim();
|
|
} |