Exemplo n.º 1
0
 public int Transfer(Addressable source, long index, T destination)
 {
     property.SetValue(destination, source.ReadInt64(index));
     return(8);
 }
Exemplo n.º 2
0
 public int Transfer(Addressable source, long index, Substitute <T> destination)
 {
     destination.Add(property.Name, () => source.ReadInt64(index));
     return(8);
 }