System.CSharpHelpers.IsSpecialTypeChar C# (CSharp) Method

IsSpecialTypeChar() static private method

static private IsSpecialTypeChar ( char ch, bool &nextMustBeStartChar ) : bool
ch char
nextMustBeStartChar bool
return bool
        internal static bool IsSpecialTypeChar(char ch, ref bool nextMustBeStartChar)
        {
            switch (ch)
            {
                case ':':
                case '.':
                case '$':
                case '+':
                case '<':
                case '>':
                case '-':
                case '[':
                case ']':
                case ',':
                case '&':
                case '*':
                    nextMustBeStartChar = true;
                    return true;

                case '`':
                    return true;
            }
            return false;
        }
    }