Esempio n. 1
0
 // Methods
 internal Accessor(PropertyInfo pi, DGet <T, V> dget, DSet <T, V> dset, DRSet <T, V> drset, MetaAccessor <T, V2> storage)
     : this(false, pi, storage)
 {
     this.dget  = dget;
     this.dset  = dset;
     this.drset = drset;
 }
Esempio n. 2
0
 internal Accessor(PropertyInfo pi, DGet <T, V> dget, DSet <T, V> dset, DRSet <T, V> drset, MetaAccessor <T, V2> storage)
 {
     this.pi      = pi;
     this.dget    = dget;
     this.dset    = dset;
     this.drset   = drset;
     this.storage = storage;
 }
Esempio n. 3
0
 internal Accessor(FieldInfo fi, DGet <T, V> dget, DRSet <T, V> drset)
 {
     this.fi    = fi;
     this.dget  = dget;
     this.drset = drset;
 }