Version: 2018.1
public static bool operator != (Object x, Object y);

説明

二つのオブジェクトが異なるオブジェクトを参照しているか比較します

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform target; void Update() { if (target != transform) print("Another object"); } }