示例#1
0
        private static void SetPropertyValue(RegistrationData registrationData, string fieldName, object emptyValue)
        {
            var property = registrationData.GetType().GetProperty(fieldName);

            property.SetValue(registrationData, emptyValue);
        }