类型或名称空间定义,或期望的文件结束.}的预期
本文关键字:结束 文件 空间 定义 类型 期望 | 更新日期: 2023-09-27 18:13:19
我试图找到一个解决方案,但没有找到。
问题似乎是公共int数,但我不知道如何修复它。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrimTal
{
class Program
{
public static void Main(string[] args)
{ // } expected
public int number;
number = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Ditt nummer är: " + number);
Console.ReadKey();
}
}
} // type or namespace definition, or end-of-file expected
属性必须是"outside",像这样:
class Program
{
// Properties
public static int Number {get; set;}
// Methods
public static void Main(string[] args)
{
Number = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Ditt nummer är: " + Number);
Console.ReadKey();
}
}
或者您可以在Main
中使用一个局部变量:int number = Convert.ToInt32(Console.ReadLine());