Exemplo n.º 1
0
 public BinField(BinFieldAttribute attribute, MethodInfo getMethod, MethodInfo setMethod)
 {
     _attribute = attribute;
     _field     = null;
     _getMethod = getMethod;
     _setMethod = setMethod;
 }
Exemplo n.º 2
0
 public BinField(BinFieldAttribute attribute, FieldInfo fieldInfo)
 {
     _attribute = attribute;
     _field     = fieldInfo;
     _getMethod = null;
     _setMethod = null;
 }
Exemplo n.º 3
0
 public Property(PropertyKey key, BinFieldAttribute attribute)
 {
     Key       = key;
     Attribute = attribute;
 }