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