System.Configuration.UrlPath.IsDirectorySeparatorChar C# (CSharp) 메소드

IsDirectorySeparatorChar() 개인적인 정적인 메소드

private static IsDirectorySeparatorChar ( char ch ) : bool
ch char
리턴 bool
        private static bool IsDirectorySeparatorChar(char ch) {
            return (ch == '\\' || ch == '/');
        }