"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Safely Set a String Value to a Property Using Reflection?

How to Safely Set a String Value to a Property Using Reflection?

Posted on 2025-02-20
Browse:997

How to Safely Set a String Value to a Property Using Reflection?

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);
Latest tutorial More>

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