Antmicro.Migrant.Utilities.Variable.StoreValueFromStack C# (CSharp) 메소드

StoreValueFromStack() 공개 메소드

public StoreValueFromStack ( ILGenerator generator ) : void
generator System.Reflection.Emit.ILGenerator
리턴 void
        public void StoreValueFromStack(ILGenerator generator)
        {
            if(storeValueAction == null)
            {
                throw new InvalidOperationException();
            }

            storeValueAction(generator);
        }