LanguageEnglish
  • C#
  • JS

Script language

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

This version of Unity is unsupported.

Assert.IsNull

public static void IsNull(Object value, string message);
public static void IsNull(T value);
public static void IsNull(T value, string message);

Parameters

valueThe Object or type being checked for.
messageThe string used to describe the Assert.

Description

Assert the value is null.

using UnityEngine;
using UnityEngine.Assertions;

public class AssertionExampleClass : MonoBehaviour { MyClass myClassReference;

void Update() { // Make sure the myClassReference reference is never set Assert.IsNull(myClassReference); } }

public class MyClass {}