AcTools.Utils.CharExtension.IsDirectorySeparator C# (CSharp) Method

IsDirectorySeparator() public static method

public static IsDirectorySeparator ( this c ) : bool
c this
return bool
        public static bool IsDirectorySeparator(this char c) {
            return c == Path.DirectorySeparatorChar || c == Path.AltDirectorySeparatorChar;
        }
    }