暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StringUtils.cs 293B

1234567891011121314
  1. using System.IO;
  2. namespace Packages.Rider.Editor.Util
  3. {
  4. internal static class StringUtils
  5. {
  6. public static string NormalizePath(this string path)
  7. {
  8. return path.Replace(Path.DirectorySeparatorChar == '\\'
  9. ? '/'
  10. : '\\', Path.DirectorySeparatorChar);
  11. }
  12. }
  13. }