Search found 1 match
- Wed Oct 05, 2016 1:16 am
- Forum: Dialogue System for Unity
- Topic: Null Reference exception?
- Replies: 6
- Views: 2940
Re: Null Reference exception?
The NullReferenceException is designed as a valid runtime condition that can be thrown and caught in normal program flow. It indicates that you are trying to access member fields, or function types, on an object reference that points to null. That means the reference to an Object which is not initia...