Always remain updated about current software development trends

Articles by PABLO ALISKEVICIUS

Dangling Pointers: Pathology, Prevention and Cure

Dangling pointers were a problem in the past, but nowadays we'll find none, right? Guess again...

A Study on Corruption

Do you believe that memory corruption will generate an immediate, repeatable crash? Some programmers actually do...

(C#) Determining whether the current build mode is Debug or Release

You can make it a bit shorter: public virtual bool IsDebug { get { #if (DEBUG) return true; #else return false; #endif } }Thanks for sharing,

How to build an image (DLL/EXE) when two of its included libraries have the same symbol (say function/variable) using VC++

If the .lib files you're linking to represent some .dll files somewhere else, you can do the following:void main(){ FunB(); // from external_1.lib FunC(); // from external_2.lib // FunA(); // from external_1.lib / external_2.lib ???? typedef void...

  • Page 1 of 1
  •