标签: c# events nullreferenceexception
所以我有这样的事情:
public void GenerateElephant (){ Elephant newPhant = new Elephant(); SomeOtherScript.instance.NameOfEvent += newPhant.HandleEvent; }
我在+ =行得到一个空引用。 我试过的事情: 确保我在调用之前检查了事件是否有订阅者;