CSKernelFile.cFile.isSeparator C# (CSharp) Method

isSeparator() private static method

private static isSeparator ( string character ) : bool
character string
return bool
        private static bool isSeparator(string character)
        {
            switch (character)
            {
                case c_sep_dir:
                    return true;
                case c_sep_diralt:
                    return true;
                default:
                    return false;
            }
        }