Alsing.Text.PatternMatchers.PropertyPathPatterhMatcher.IsValidChar C# (CSharp) Method

IsValidChar() private static method

private static IsValidChar ( char c ) : bool
c char
return bool
        private static bool IsValidChar(char c)
        {
            if (CharUtils.IsLetterOrDigit(c) || c == '_')
                return true;

            return false;
        }
    }