System.Configuration.UrlPath.IsDirectorySeparatorChar C# (CSharp) Méthode

IsDirectorySeparatorChar() private static méthode

private static IsDirectorySeparatorChar ( char ch ) : bool
ch char
Résultat bool
        private static bool IsDirectorySeparatorChar(char ch) {
            return (ch == '\\' || ch == '/');
        }