コード例 #1
0
 public BinField(BinFieldAttribute attribute, MethodInfo getMethod, MethodInfo setMethod)
 {
     _attribute = attribute;
     _field     = null;
     _getMethod = getMethod;
     _setMethod = setMethod;
 }
コード例 #2
0
 public BinField(BinFieldAttribute attribute, FieldInfo fieldInfo)
 {
     _attribute = attribute;
     _field     = fieldInfo;
     _getMethod = null;
     _setMethod = null;
 }
コード例 #3
0
 public Property(PropertyKey key, BinFieldAttribute attribute)
 {
     Key       = key;
     Attribute = attribute;
 }