MoveNextRunner.cs 320 B

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