m_Url的类型是CString,值是http://localhost:6665/
VARIANT_BOOL m_Can=false;
CString url=m_Url.MakeLower();
if(url.Find((BSTR)"http://localhost")==0 || url.Find((BSTR)"http://172.16.1.1")==0)
m_Can=true;
想C++中使用类似于C#的String.StartsWidth(String s)功能,所以像上面那样写,但是不行,m_Can始终是false,该怎么写?