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

IsValidStartChar() private static method

private static IsValidStartChar ( char c ) : bool
c char
return bool
        private static bool IsValidStartChar(char c)
        {
            if (CharUtils.IsLetter(c))
                return true;

            if ("_@".IndexOf(c) >= 0)
                return true;

            return false;
        }