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

public class Test : MonoBehaviour
{
    void Start()
    {

        int[] points = {83, 99, 52, 93, 15};

        for(int i = 0; i < points.Lenght; i++)
        {
            if(points[i] >= 90)
            {
                Debug.Log(points[i]);
            }
        }    

    }
    
}


Assets\Test.cs(12,35): error CS1061: 'int[]' does not contain a definition for 'Lenght' and no accessible extension method 'Lenght' accepting a first argument of type 'int[]' could be found (are you missing a using directive or an 어셈블리 reference?)


왜 Lenght에서 오류가 나는지도 모르겠고 어케 해결해야 할 지를 모르겠음 ㅅㅂ


책에 나온거 그대로 따라 해봤을 뿐인데 갑자기 오류가 나니까 답답해 뒤질거 같음


저기 어셈블리는 영어로 적으면 차단 단어라고 나올길래 한글로 적음