wait without pause anything else unity

C#
  IEnumerator DoSomething()  {
    DoThingOne();
    yield return new WaitForSeconds(1);
    DoThingTwo();
  }
Source

Also in C#: