The Old New Thing

What does it mean when my program exits with the message "This application has requested the Runtime to terminate it in an unusual way"?

You're running your program, and then it suddenly exits with the message This application has requested the Runtime to terminate it in an unusual way. What happened? That message is printed by the C runtime function , the same function that also causes your program to terminate with exit code 3. Your program might call explicitly, or...