Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314 |
- using System.IO;
-
- namespace Packages.Rider.Editor.Util
- {
- internal static class StringUtils
- {
- public static string NormalizePath(this string path)
- {
- return path.Replace(Path.DirectorySeparatorChar == '\\'
- ? '/'
- : '\\', Path.DirectorySeparatorChar);
- }
- }
- }
|