IEnumerator co; co = MyCoroutine(); // create an IEnumerator object StartCoroutine(co); // start the coroutine StopCoroutine(co); // stop it.