The crash details are:
Description:
Stopped working
Problem signature:
Problem Event Name: APPCRASH
Application Name: MonkiesRUs.exe
Application Version: 0.0.0.0
Application Timestamp: 46226551
Fault Module Name: KERNEL32.dll
Fault Module Version: 6.0.6000.16386
Fault Module Timestamp: 4549d328
Exception Code: e0434f4d
Exception Offset: 00000000000233ac
OS Version: 6.0.6000.2.0.0.256.1
Locale ID: 1033
Here is my source code:
Code: Select all
using System;
using Irrlicht;
using Irrlicht.Video;
using Irrlicht.Core;
using Irrlicht.Scene;
namespace HelloWorld
{
class Example
{
[STAThread]
static void Main(string[] args)
{
try{
Console.Write("Sucker");
DriverType dType;
Console.ReadLine();
}
catch(Exception e)
{
Console.WriteLine(e.Message);
}
}
}
}
Can someone please help? Been working on this issue for about a day now and it is getting highly annoying.