Antmicro.Migrant.Utilities.Variable.Variable C# (CSharp) Метод

Variable() публичный Метод

public Variable ( LocalBuilder local ) : System
local System.Reflection.Emit.LocalBuilder
Результат System
        public Variable(LocalBuilder local)
        {
            pushValueAction = g => g.PushLocalValueOntoStack(local);
            pushAddressAction = g => g.PushLocalAddressOntoStack(local);
            storeValueAction = g => g.StoreLocalValueFromStack(local);
        }

Same methods

Variable::Variable ( int argumentId, Type type = null ) : System