Catel.IO.Path.ReplacePathSlashesByUrlSlashes C# (CSharp) Метод

ReplacePathSlashesByUrlSlashes() статический приватный Метод

Replaces path slashes (\) by url slashes (/).
The is null or whitespace.
static private ReplacePathSlashesByUrlSlashes ( string value ) : string
value string Value to convert.
Результат string
        internal static string ReplacePathSlashesByUrlSlashes(string value)
        {
            Argument.IsNotNullOrWhitespace("value", value);

            return value.Replace("\\", "/");
        }