Rubberduck.Parsing.Symbols.IdentifierReference.HasTypeHint C# (CSharp) Method

HasTypeHint() public method

public HasTypeHint ( ) : bool
return bool
        public bool HasTypeHint()
        {
            if (_hasTypeHint.HasValue)
            {
                return _hasTypeHint.Value;
            }

            string token;
            return HasTypeHint(out token);
        }

Same methods

IdentifierReference::HasTypeHint ( string &token ) : bool