Beispiel #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);
        }
Beispiel #2
0
 public v(object variable, openo parent)
     : base(The.Value((System.Reflection.FieldInfo)variable, parent.value))
 {
     this.parent   = parent;
     this.variable = variable;
 }