Ejemplo n.º 1
0
 /*
 public DynamicPropertyData(PropertyInfo PropertyInfo, int Position)
     : base(PropertyInfo, Position)
 {
     Initialize();
 }
 */
 private void Initialize()
 {
     _getter = FirstCallGetter;
     _setter = FirstCallSetter;
 }
Ejemplo n.º 2
0
 private object FirstCallGetter(object instance)
 {
     _getter = DynamicMethodUtil.CreatePropertyGetter(this.Property);
     return(_getter(instance));
 }
Ejemplo n.º 3
0
 private object FirstCallGetter(object instance)
 {
     _getter = DynamicMethodUtil.CreatePropertyGetter(this.Property);
     return _getter(instance);
 }
Ejemplo n.º 4
0
 private void Initialize()
 {
     _getter = FirstCallGetter;
     _setter = FirstCallSetter;
 }