MoveNextRunner.cs 344 B

12345678910111213141516
  1. using System.Diagnostics;
  2. using System.Runtime.CompilerServices;
  3. namespace ETModel
  4. {
  5. internal class MoveNextRunner<TStateMachine> where TStateMachine : IAsyncStateMachine
  6. {
  7. public TStateMachine StateMachine;
  8. [DebuggerHidden]
  9. public void Run()
  10. {
  11. StateMachine.MoveNext();
  12. }
  13. }
  14. }