Hello,
I am using VC++ 2005 Express. I have a template function ToString:
template<typename T>
string ToString(const T& type)
{
stringstream strstrm;
strstrm << type;
string ret;
strstrm >> ret;
return ret;
}
Whenever I type "ToString(" VC always crashes. It seems like Intellisense is having trouble with it and I don't know why. Is there any known reason for this and a fix
Slaru

Intellisense seems to be crashing
Ltrs Zariyuco
If you can reproduce the issue constantly please log it at http://lab.msdn.microsoft.com/productfeedback/default.aspx
Thanks in advance for taking the time to log the issue!
Thanks, Ayman Shoukry VC++ Team