Object.ToString <--> Object.name Which one is faster ?

I already learnded (Component.CompareTag(“Tag”)) is faster than (Component.tag == “Tag”)

To use it like this:

function OnTriggerEnter (other : Collider) {
    if (other.CompareTag ("Player")) {
        Destroy (other.gameObject);
    }
}

So is it the same for (other.ToString == "name) instead of (other.name == “name”) ?
Or is it just the same ?

Thank you!

Those are two different things that produce different results, so the question about which is faster is kind of irrelevant.