我反复遇到同样的问题,但没有成功。我不断收到此错误:
类型或命名空间定义,或预期的文件结尾
我在代码末尾的两个花括号上有两次:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Asrai
{
class Program
{
public int health = 100;
public int damage = 0;
public static int hit = 0;
static void Main(string[] args)
{
if (hit == 1)
{
int operator -(int health,int damage);
}
}
}
}
我可能忽略了一些简单的事情,但我看不出这段代码有什么问题