Checking if an object is destroyed?

Hello. if I instantiate an object, how can I check to see if that object is destroyed? Thanks

Just check for null…

  bool isDestroyed = (myObject == null);