我是 C# 新手,在我的教科书中,它要求我向 Program.cs 类的 main 方法添加一些代码,但没有告诉我如何操作。我是初学者,所以我只是在寻找基础知识,当我继续前进时,我会学习更高级的课程,所以请保持你的解释彻底,但要降低到第 1 天的水平。以下是我提供的代码。它不断地为我提供错误<
这是下面的代码:我应该将公共静态语音 TestIfElse 方法添加到 Program.cs 类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ifelse_Statement
{
class Program
{
static void Main(string[] args)
{
TestIfElse(10);
public static void TestIfElse(int n)
{
if (n < 10)
{
Console.WriteLine(“n is less than 10”);
}
else if (n < 20)
{
Console.WriteLine(“n is less than 20”);
}
else if (n < 30)
{
Console.WriteLine(“n is less than 30”);
}
else
{
Console.WriteLine(“n is greater than or equal to 30”);
}
}
}
}
}