I want to test if my application crash dump can be debugged. But firstly, I need to generate a crash dump of my application. I\'m using C# to code my app, and have tried wit
It's easy enough to reproduce if you try to transform a null game object. For example, like this:
public static GameObject gameObjectCrash; public void GenerateCrash() { gameObjectCrash.transform.rotation = Quaternion.Euler(90, 0, 0); }