Habanero.Smooth.PropertyAutoMapper.PropertyAutoMapper C# (CSharp) Method

PropertyAutoMapper() public method

Constructs the Property Automapper for a particular PropertyInfo.
public PropertyAutoMapper ( PropertyInfo propInfo ) : System
propInfo System.Reflection.PropertyInfo
return System
        public PropertyAutoMapper(PropertyInfo propInfo)
        {
            if (propInfo == null) throw new ArgumentNullException("propInfo");
            this.PropertyWrapper = propInfo.ToPropertyWrapper();
        }

Same methods

PropertyAutoMapper::PropertyAutoMapper ( PropertyWrapper propertyWrapper ) : System