Set the string value of the attribute with reflection
]When setting properties with reflection, you may encounter an ArgumentException due to type mismatch. To solve this problem, consider the following:
Method 1: Convert.ChangeType()
]This method allows conversion between compatible types at runtime. For non-IConvertible types, logical processing in special cases may be required.
Code example:
]Ship ship = new Ship();
string value = "5.5";
PropertyInfo propertyInfo = ship.GetType().GetProperty("Latitude");
propertyInfo.SetValue(ship, Convert.ChangeType(value, propertyInfo.PropertyType), null);
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3