コード例 #1
0
 internal PropertyMappingInfo(string dataFieldName, object defaultValue, PropertyInfo info, string specailAttributes)
 {
     _dataFieldName = dataFieldName;
     _defaultValue = defaultValue;
     _propInfo = info;
     _SpecialAttributes = specailAttributes;
     _FieldGenInfo = new FieldGenerateInfo(FieldGenerateMethod.Assigned, null);
 }
コード例 #2
0
 internal PropertyMappingInfo(string dataFieldName, object defaultValue, PropertyInfo info, string specailAttributes, FieldGenerateInfo fieldGenInfo)
 {
     _dataFieldName = dataFieldName;
     _defaultValue = defaultValue;
     _propInfo = info;
     _SpecialAttributes = specailAttributes;
     _FieldGenInfo = fieldGenInfo;
 }