- using System.Diagnostics;
- using System.Runtime.CompilerServices;
- namespace ETModel
- {
- internal class MoveNextRunner<TStateMachine> where TStateMachine : IAsyncStateMachine
- {
- public TStateMachine StateMachine;
- [DebuggerHidden]
- public void Run()
- {
- StateMachine.MoveNext();
- }
- }
- }
|