Купил самоучебник и следую ему строчка за строчкой.
Пишу указанный код, всё по книге. Но он выдаёт ошибку
CS8025 C# Feature is not available in C# 4. Please use language version 7.0 or greater.
Что я делаю не так ?
Сам кодusing System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class HelloWorld : MonoBehaviour {
// Use this for initialization
void Start () {
//print("Hello World");
void Update () {
print("Hello World");
}
}
// Update is called once per frame
void Update () {
}
}