AcTools.Utils.CharExtension.IsDirectorySeparator C# (CSharp) Méthode

IsDirectorySeparator() public static méthode

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