令牌'}'错误无效

时间:2018-01-15 01:27:08

标签: c# unity3d

我在这里理解错误时遇到了一些麻烦。我正在尝试按照教程制作点击游戏,但错误列表一直告诉我我有一个无效的令牌。任何人在我出错的地方有任何想法?到目前为止,这是我的编码:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Click : MonoBehaviour {

    public UnityEngine.UI.Text

}

1 个答案:

答案 0 :(得分:2)

您的代码未正确完成。 您已声明具有类型但不是名称的公共成员。尝试添加名称并以分号结束。这是完成的代码:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Click : MonoBehaviour {
    //fix this line
    public UnityEngine.UI.Text myText;

}

无效令牌'}'错误是由分号或不完整的代码引起的。