Esempio n. 1
0
        public v(string name, openo parent)
            : base(null)
        {
            this.parent = parent;

            this.variable = The.Variable(name, this.parent.Type());
            this.value    = The.Value((System.Reflection.FieldInfo) this.variable, this.parent.value);
        }
Esempio n. 2
0
    private openo TryGetVar(string name)
    {
        var variable = The.Variable(name, this.value.GetType());

        if (variable != null)
        {
            return(new v(variable, this));
        }

        return(null);
    }