Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Well, in .NET 4 Microsoft added the HandleProcessCorruptedStateExceptions attribute:

HandleProcessCorruptedStateExceptionsAttribute Class

I want to test this feature. How can I bring my application to a "corrupt state"?

share|improve this question
2  
Lets say you catch it. What are you going to do with it? – Will Jun 1 '10 at 13:37
2  
Log it. We have a production crash with no logs whatsoever. This new log will help us. – user286353 Jun 1 '10 at 14:00

2 Answers

up vote 8 down vote accepted

Screwing up the garbage collected heap is always a good way:

using System;
using System.Runtime.InteropServices;


class Program {
  unsafe static void Main(string[] args) {
    var obj = new byte[1];
    var pin = GCHandle.Alloc(obj, GCHandleType.Pinned);
    byte* p = (byte*)pin.AddrOfPinnedObject();
    for (int ix = 0; ix < 256; ++ix) *p-- = 0;
    GC.Collect();   // kaboom
  }
}
share|improve this answer
Works like a charm. Thanks. – user286353 Jun 1 '10 at 14:12

Just dereference a random number:

    private static unsafe void AccessViolation()
    {
        byte b = *(byte*) (8762765876);
    }

or overflow the stack:

    private static void StackOverflow()
    {
        StackOverflow();
    }
share|improve this answer
+1 — much simpler than the accepted answer! – Timwi Sep 1 '10 at 21:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.