我正在尝试在 C# 中学习递归。我可以在控制台应用程序中做一个简单的倒计时,但我不确定如何在 ASP.NET Web 应用程序中做同样的事情。我想在列表框中显示结果,但我无法在静态函数中访问列表框。
这是我的控制台应用程序:
static void Main(string[] args)
{
int startInt = 100;
countDown(startInt);
Console.ReadLine();
}
public static void countDown(int integer)
{
if (integer == 1)
{
Console.WriteLine(integer);
}
else
{
Console.WriteLine(integer);
integer--;
countDown(integer);
}
}
关于让它在将在列表框中显示数字的 Web 应用程序中工作的任何帮助?