About 23,900 results
Open links in new tab
  1. Storing a pointer to an object - social.msdn.microsoft.com

    Dec 22, 2011 · 1 To mean what C++ would call a pointer - e.g if you have SomeClass myObj; then myObj is a reference variable in .Net-speak, or a pointer to an object of type SomeClass …

  2. std::condition_variable destructor crashes on VS2012

    Sep 17, 2014 · The C++ standard requires as the only precondition for this destructor to work as expected that no threads wait on the condition variable: " There are no threads blocked on …

  3. Linux development with VS: using precompiled headers with gcc

    Jun 15, 2018 · For this case, I suggest you try these ways below. 1. Use GCC with precompiled headers. To create a precompiled header file, simply compile it as you would any other file, if …

  4. fatal error 1853 - social.msdn.microsoft.com

    Jul 16, 2012 · I was also hit by the C1853 problem when I was using VS 2008--and finally resorted to deleting the C++ files from the solution template, which did make it run in debug …

  5. Visual Studio 2015 intelisense is too slow

    Dec 22, 2015 · Is the C++ project very big? Do you use any tools such as Resharper or Node tools for visual studio? Is the slowness only happened with C++ project? If you create a simple …

  6. C/C++ DLL Obfuscator - social.msdn.microsoft.com

    Jun 12, 2009 · Could someone tell me as which Obfuscator tool to use for DLL/Exe generated by VC++ C/C++ code.

  7. Visual Studio Debugging shows incorrect values

    Aug 3, 2007 · Currently, I'm debugging a C++ program in VS2005 and while debugging i get garbage values in the debug Watch & Locals windows.

  8. C++ - Serializing class instances with MSMQ

    Feb 5, 2013 · C# provides an excellent mechanism for serialising instances of classes over MSMQ (I'm using an XMLFormatter). I can't seem to find any documentation about how to …

  9. Is System.Transactions.TransactionScope available in C++/CLR?

    Nov 21, 2008 · To get the equivalent in C++ you'll need to use C++'s form of deterministic cleanup capability -- i.e. the 'delete' keyword. Try the following and see if things work:

  10. [Dev C++] - how call the compiler by DOS?

    May 31, 2013 · 1 - what are the compiler files (for i put in my program)... like Dev C++: they use MinGW32 for compile the C\C++ code). what are the files? 2 - how call the compiler by …