Ничего не понимаю, вроде делаю всё правильно, но получаю NullReferenceException. Откуда?
Код
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Testing: MonoBehaviour {
public string[] demoArray = {"EMPTY","EMPTY","EMPTY","EMPTY","EMPTY"};
public List<string[]> data;
// Use this for initialization
void Start () {
data.Add (demoArray);
}
}
NullReferenceException: Object reference not set to an instance of an object
Testing.Start () (at Assets/Scripts/Testing.cs:12)
Ватафак, куда копать?