How do I track down the cause of a StackOverflowException in .NET?

前端 未结 4 1196
南旧
南旧 2021-02-01 03:18

I get a StackOverflowException when I run the following code:

private void MyButton_Click(object sender, EventArgs e) {
  MyButton_Click_Aux();
}

p         


        
4条回答
  •  一向
    一向 (楼主)
    2021-02-01 03:26

    Does Log call back to Log? This would also cause a SO.

提交回复
热议问题