I'm currently learning C#. Can someone who knows C# or programming answer this question for me?

You can see "count = 0" on line 25. If I remove this line, I no longer get any output on the console. But I wonder why this line even needs to be there, since int count = 0; was already initialized in line 13. So why does it need to be initialized again in…