I want to ignore method call the first time it's called:
but I want to call original the next time I call the method?
My initial try did not work: :arrow: Foo is a static class
//ignore first call
Isolate.WhenCalled(() => Foo.Bar()).DoInstead((ctx) => { });
//ignored
Foo.Bar();
Isolate.WhenCalled(() => Foo.Bar()).CallOriginal();
//ignored TOO !!
Foo.Bar();