Exemplo n.º 1
0
 public override void Init(Method Method)
 {
     base.Init(Method);
     if (this.Job != null)
     {
         RefableObject v = this.Job.V;
         this.Job = null;
         v.LoadAddress(Method);
         this.Store(Method);
     }
 }
Exemplo n.º 2
0
 public RefVar(RefableObject v) : base(PointerOf(v.Type))
 {
     this.VarType = v.Type;
     this.Job     = new RefInitJob(v);
 }