Exemple #1
0
 public TProxy this[long index] {
     get {
         var result = DataProxy.Create <TProxy>(Process, Address);
         if (index != 0)
         {
             result = result.GetAdjacentProxy(index);
         }
         return(result);
     }
 }
Exemple #2
0
 protected TProxy GetFieldProxy <TProxy>(StructField <TProxy> field, bool polymorphic = true)
     where TProxy : IDataProxy
 {
     return(DataProxy.Create <TProxy>(Process, Address.OffsetBy(field.Offset), polymorphic));
 }