2018. 1. 18. 14:15

How to create conditional breakpoint in Visual Studio

  1. String
    1. std::stirng
      1. Ansi 
        • strcmp(newString._Bx._Ptr,"my value")==0
      2. Unicode
        • wcscmp(newString._Bx._Ptr, L"my value")==0
      3. Example 
        • wcscmp(dosPath._Bx._Ptr,  L"C:\\Windows\\System32\\notepad.exe") == 0
      4. link