Version: 2022.3
言語: 日本語
public static void IsNotNull (Object value, string message);
public static void IsNotNull (T value);
public static void IsNotNull (T value, string message);

パラメーター

value The Object or type being checked for.
message The string used to describe the Assert.

説明

Assert 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 {}