AvalonStudio.Controls.IntellisenseManager.IsTriggerChar C# (CSharp) Method

IsTriggerChar() private method

private IsTriggerChar ( char currentChar, bool isVisible ) : bool
currentChar char
isVisible bool
return bool
        private bool IsTriggerChar(char currentChar, bool isVisible)
        {
            bool result = false;

            if ((char.IsLetter(currentChar) || isVisible && char.IsLetterOrDigit(currentChar)) || languageService.IntellisenseTriggerCharacters.Contains(currentChar))
            {
                result = true;
            }

            return result;
        }