Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Assert.IsNotNull

public static void IsNotNull(T value);
public static void IsNotNull(T value, string message);

Description

Asserts that the value is not null.

using UnityEngine;
using UnityEngine.Assertions;

public class AssertionExampleClass : MonoBehaviour { MyClass myClassReference; void Update() { //Make sure the myClassReference reference is set Assert.IsNotNull(myClassReference); } }

public class MyClass {}

Did you find this page useful? Please give it a rating: