unity/c# 에러
-
[c#] NullReferenceException: Object reference not set to an instance of an object webrequestunity/c# 에러 2022. 10. 26. 09:44
NullReferenceException: Object reference not set to an instance of an object webrequest 외부 서버에서 스크립트 작성으로 jsonobject, jsonarray 값을 가져온 다음 배열안에 담긴 값을 가져오려고 했는데 위와같은 에러가 나타났습니다. 가져올 json 데이터 형태는 아래처럼 구성되어 있습니다. [System.Serializable] public class SensorData { public string code; public string msg; public SensorDataList[] item; } [System.Serializable] public class SensorDataList { public string temp..