Another option in addition to @DavGarcia's answer - introduce an interface combining the needed ones and upcast to it:
interface IExample : IProcess, IWait { }
class Example : IExample { }
IExample item = new Example();
item.Do();
item.Wait();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…