views:

113

answers:

2

Is it possible to search StackOverflow for a string containing < and > characters?

I'm trying to find questions relating to Where<T> but get told there are no results for WhereT. This makes it difficult to find information on questions relating to C# generics.

+6  A: 

Stick to using google searches with the site:stackoverflow.com modifier

TheTXI
Or just go here: http://www.google.com/coop/cse?cx=018205968162215846785:7n6ajnwyz-i
Joel Coehoorn
Never seen that before. Is there a way I can add that to my list of search engine's in the firefox search bar? Otherwise it is likely faster for me to just type it in as I normally do.
TheTXI
I'm not sure: you used to be able to add search providers by URL but I don't see how to do that anymore.
Joel Coehoorn
Personally, I just keep the link handy on my user profile page.
Joel Coehoorn
It's a good idea, I am just so hard-wired to the search box now that anything else seems like going out of my way :)
TheTXI
A: 

Add the ` character or double quotes to your search terms, e.g.,

`Where<T>` or "Where<T>"

Jon Limjap