简体   繁体   中英

Visual Studio 2013 search bug?

I am trying to search for :

"You must Sign this docmuent."

在此处输入图片说明

But VS claims it Cannot be found(in my search I specify entire solution)

But that string is in my code:

 if (txtSigString.Text.Trim() == "")
            {
                s5ValidationMessage += "You must Sign this docmuent.";
            }

Is this a known issue?

You can try to see if you are not using another language character in your text. we had some issue with it trying to understand why MS Access can not sort correctly a field column. After some headache we saw that there were some Russian characters in many field. There are some letters that are present in English and other languages so someone can forget to switch the keyboard language while typing !

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM